markus / KCOM / App.xaml @ d18ea2bd
이력 | 보기 | 이력해설 | 다운로드 (4.71 KB)
1 | 787a4489 | KangIngu | <Application
|
---|---|---|---|
2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
4 | xmlns:local="clr-namespace:KCOM" |
||
5 | xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" x:Class="KCOM.App" |
||
6 | StartupUri="MainWindow.xaml"> |
||
7 | <Application.Resources>
|
||
8 | <ResourceDictionary>
|
||
9 | <ResourceDictionary.MergedDictionaries>
|
||
10 | 8bd25583 | taeseongkim | <ResourceDictionary Source="/Telerik.Windows.Controls;component/Themes/FontResources.xaml"/> |
11 | 787a4489 | KangIngu | <ResourceDictionary Source="Resources\Theme_Color.xaml"/> |
12 | d33ef543 | taeseongkim | <ResourceDictionary Source="Resources\WindowStyle.xaml"/> |
13 | 92442e4a | taeseongkim | <ResourceDictionary Source="Resources\DecodeImageTemplate.xaml"/> |
14 | 787a4489 | KangIngu | <ResourceDictionary Source="Resources\Theme_CustomControl.xaml"/> |
15 | 6af42ff0 | taeseongkim | <ResourceDictionary Source="Resources\SimpleLIstViewStyle.xaml"/> |
16 | 8bd25583 | taeseongkim | <ResourceDictionary Source="Resources\ClearTextBoxStyle.xaml"/> |
17 | 787a4489 | KangIngu | <ResourceDictionary Source="Assets\RadGridViewStyleResourceDictionary.xaml"/> |
18 | <ResourceDictionary Source="Messenger\StyleDictionary.xaml"/> |
||
19 | a6f7f9b6 | djkim | <ResourceDictionary Source="/MarkupToPDF;component/themes/generic.xaml"/> |
20 | 787a4489 | KangIngu | <!--<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/System.Windows.xaml"/>
|
21 | <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.xaml"/>
|
||
22 | <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Input.xaml"/>
|
||
23 | <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.RibbonView.xaml"/>
|
||
24 | <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>-->
|
||
25 | |||
26 | <!--<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>-->
|
||
27 | <ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/System.Windows.xaml"/> |
||
28 | <ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.xaml"/> |
||
29 | <ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Input.xaml"/> |
||
30 | 91e84544 | taeseongkim | <ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Navigation.xaml"/> |
31 | <ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Docking.xaml"/> |
||
32 | f65e6c02 | taeseongkim | |
33 | <ResourceDictionary Source="Resources\DragAndDropListBoxStyle.xaml"/> |
||
34 | 787a4489 | KangIngu | <!--<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.RibbonView.xaml"/>-->
|
35 | <!--<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>-->
|
||
36 | </ResourceDictionary.MergedDictionaries>
|
||
37 | 91e84544 | taeseongkim | <Style TargetType="telerik:AutoHideArea" BasedOn="{StaticResource AutoHideAreaStyle}"> |
38 | <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False" /> |
||
39 | </Style>
|
||
40 | <Style TargetType="telerik:RadDocking" BasedOn="{StaticResource RadDockingStyle}"> |
||
41 | <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
||
42 | </Style>
|
||
43 | <Style TargetType="telerik:RadGridResizer" BasedOn="{StaticResource RadGridResizerStyle}"> |
||
44 | <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
||
45 | </Style>
|
||
46 | <Style TargetType="telerik:RadSplitContainer" BasedOn="{StaticResource RadSplitContainerStyle}"> |
||
47 | <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
||
48 | </Style>
|
||
49 | <Style TargetType="telerik:RadPaneGroup" BasedOn="{StaticResource RadPaneGroupStyle}"> |
||
50 | <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
||
51 | </Style>
|
||
52 | <Style TargetType="telerik:PaneHeader" BasedOn="{StaticResource PaneHeaderStyle}"> |
||
53 | <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
||
54 | </Style>
|
||
55 | <Style TargetType="telerik:RadTabControl" BasedOn="{StaticResource RadTabControlStyle}"> |
||
56 | <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
||
57 | </Style>
|
||
58 | 787a4489 | KangIngu | </ResourceDictionary>
|
59 | 8e5a4a6a | taeseongkim | |
60 | 787a4489 | KangIngu | </Application.Resources>
|
61 | </Application> |