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