markus / KCOM / App.xaml @ 77cdac33
이력 | 보기 | 이력해설 | 다운로드 (6.09 KB)
1 |
<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" |
6 |
|
7 |
x:Class="KCOM.App" |
8 |
StartupUri="MainWindow.xaml"> |
9 |
<Application.Resources>
|
10 |
<ResourceDictionary>
|
11 |
<ResourceDictionary.MergedDictionaries>
|
12 |
<ResourceDictionary Source="/Telerik.Windows.Controls;component/Themes/FontResources.xaml"/> |
13 |
<ResourceDictionary Source="Resources\Theme_Color.xaml"/> |
14 |
<ResourceDictionary Source="Resources\WindowStyle.xaml"/> |
15 |
<ResourceDictionary Source="Resources\RadConfirmStyle.xaml"/> |
16 |
<ResourceDictionary Source="Resources\DecodeImageTemplate.xaml"/> |
17 |
<ResourceDictionary Source="Resources\Theme_CustomControl.xaml"/> |
18 |
<ResourceDictionary Source="Resources\SimpleLIstViewStyle.xaml"/> |
19 |
<ResourceDictionary Source="Resources\ClearTextBoxStyle.xaml"/> |
20 |
<ResourceDictionary Source="Assets\RadGridViewStyleResourceDictionary.xaml"/> |
21 |
<ResourceDictionary Source="Messenger\StyleDictionary.xaml"/> |
22 |
<ResourceDictionary Source="/MarkupToPDF;component/themes/generic.xaml"/> |
23 |
<!--<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/System.Windows.xaml"/>
|
24 |
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.xaml"/>
|
25 |
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Input.xaml"/>
|
26 |
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.RibbonView.xaml"/>
|
27 |
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>-->
|
28 |
|
29 |
<!--<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>-->
|
30 |
<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/System.Windows.xaml"/> |
31 |
<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.xaml"/> |
32 |
<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Input.xaml"/> |
33 |
<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Navigation.xaml"/> |
34 |
<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Docking.xaml"/> |
35 |
<ResourceDictionary Source="Resources\DragAndDropListBoxStyle.xaml"/> |
36 |
<ResourceDictionary Source="Resources\RadPasswordPromptStyle.xaml"/> |
37 |
<!--<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.RibbonView.xaml"/>-->
|
38 |
<!--<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>-->
|
39 |
</ResourceDictionary.MergedDictionaries>
|
40 |
<Style TargetType="telerik:AutoHideArea" BasedOn="{StaticResource AutoHideAreaStyle}"> |
41 |
<Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False" /> |
42 |
</Style>
|
43 |
<Style TargetType="telerik:RadDocking" BasedOn="{StaticResource RadDockingStyle}"> |
44 |
<Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
45 |
</Style>
|
46 |
<Style TargetType="telerik:RadGridResizer" BasedOn="{StaticResource RadGridResizerStyle}"> |
47 |
<Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
48 |
</Style>
|
49 |
<Style TargetType="telerik:RadSplitContainer" BasedOn="{StaticResource RadSplitContainerStyle}"> |
50 |
<Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
51 |
</Style>
|
52 |
<Style TargetType="telerik:RadPaneGroup" BasedOn="{StaticResource RadPaneGroupStyle}"> |
53 |
<Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
54 |
</Style>
|
55 |
<Style TargetType="telerik:PaneHeader" BasedOn="{StaticResource PaneHeaderStyle}"> |
56 |
<Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
57 |
</Style>
|
58 |
<Style TargetType="telerik:RadTabControl" BasedOn="{StaticResource RadTabControlStyle}"> |
59 |
<Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False"/> |
60 |
</Style>
|
61 |
<Style x:Key="PathButtonStyle" TargetType="{x:Type Path}"> |
62 |
<Setter Property="Width" Value="12"/> |
63 |
<Setter Property="Height" Value="12"/> |
64 |
<Setter Property="Fill" Value="White" /> |
65 |
<Setter Property="Stretch" Value="Fill" /> |
66 |
<Setter Property="HorizontalAlignment" Value="Right"/> |
67 |
<Setter Property="VerticalAlignment" Value="Center" /> |
68 |
</Style>
|
69 |
<Style x:Key="PathButtonCenterStyle" TargetType="{x:Type Path}"> |
70 |
<Setter Property="Width" Value="12"/> |
71 |
<Setter Property="Height" Value="12"/> |
72 |
<Setter Property="Margin" Value="0"/> |
73 |
<Setter Property="Fill" Value="#FF686868" /> |
74 |
<Setter Property="Stretch" Value="Fill" /> |
75 |
<Setter Property="HorizontalAlignment" Value="Center"/> |
76 |
<Setter Property="VerticalAlignment" Value="Center" /> |
77 |
</Style>
|
78 |
<Style x:Key="IconPathButton" TargetType="{x:Type telerik:RadPathButton}"> |
79 |
<Setter Property="Padding" Value="0"/> |
80 |
<Setter Property="PathStyle" Value="{StaticResource PathButtonCenterStyle}"/> |
81 |
</Style>
|
82 |
</ResourceDictionary>
|
83 |
|
84 |
</Application.Resources>
|
85 |
</Application>
|