프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / KCOM / App.xaml @ fa3271c7

이력 | 보기 | 이력해설 | 다운로드 (6.34 KB)

1
<Application
2
    x:Class="KCOM.App"
3
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5
    xmlns:local="clr-namespace:KCOM"
6
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
7
    StartupUri="MainWindow.xaml">
8
    <Application.Resources>
9
        <ResourceDictionary>
10
            <ResourceDictionary.MergedDictionaries>
11
                <ResourceDictionary Source="/Telerik.Windows.Controls;component/Themes/FontResources.xaml" />
12
                <ResourceDictionary Source="Resources\Theme_Color.xaml" />
13
                <ResourceDictionary Source="Resources\WindowStyle.xaml" />
14
                <ResourceDictionary Source="Resources\RadConfirmStyle.xaml" />
15
                <ResourceDictionary Source="Resources\DecodeImageTemplate.xaml" />
16
                <ResourceDictionary Source="Resources\Theme_CustomControl.xaml" />
17
                <ResourceDictionary Source="Resources\SimpleLIstViewStyle.xaml" />
18
                <ResourceDictionary Source="Resources\ClearTextBoxStyle.xaml" />
19
                <ResourceDictionary Source="Assets\RadGridViewStyleResourceDictionary.xaml" />
20
                <ResourceDictionary Source="Messenger\StyleDictionary.xaml" />
21
                <ResourceDictionary Source="/MarkupToPDF;component/themes/generic.xaml" />
22
                <!--<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/System.Windows.xaml"/>
23
                <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.xaml"/>
24
                <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Input.xaml"/>
25
                <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.RibbonView.xaml"/>
26
                <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>-->
27

    
28
                <!--<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>-->
29
                <ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/System.Windows.xaml" />
30
                <ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.xaml" />
31
                <ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Input.xaml" />
32
                <ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Navigation.xaml" />
33
                <ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Docking.xaml" />
34
                <ResourceDictionary Source="Resources\DragAndDropListBoxStyle.xaml" />
35
                <ResourceDictionary Source="Resources\RadPasswordPromptStyle.xaml" />
36
                <!--<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.RibbonView.xaml"/>-->
37
                <!--<ResourceDictionary Source="/Telerik.Windows.Themes.VisualStudio2013;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>-->
38
            </ResourceDictionary.MergedDictionaries>
39
            <Style BasedOn="{StaticResource AutoHideAreaStyle}" TargetType="telerik:AutoHideArea">
40
                <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False" />
41
            </Style>
42
            <Style BasedOn="{StaticResource RadDockingStyle}" TargetType="telerik:RadDocking">
43
                <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False" />
44
            </Style>
45
            <Style BasedOn="{StaticResource RadGridResizerStyle}" TargetType="telerik:RadGridResizer">
46
                <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False" />
47
            </Style>
48
            <Style BasedOn="{StaticResource RadSplitContainerStyle}" TargetType="telerik:RadSplitContainer">
49
                <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False" />
50
            </Style>
51
            <Style BasedOn="{StaticResource RadPaneGroupStyle}" TargetType="telerik:RadPaneGroup">
52
                <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False" />
53
            </Style>
54
            <Style BasedOn="{StaticResource RadPaneStyle}" TargetType="telerik:RadPane">
55
                <Setter Property="HorizontalContentAlignment" Value="Stretch" />
56
            </Style>
57
            <Style BasedOn="{StaticResource PaneHeaderStyle}" TargetType="telerik:PaneHeader">
58
                <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False" />
59
                <Setter Property="HorizontalContentAlignment" Value="Stretch" />
60
            </Style>
61
            <Style BasedOn="{StaticResource RadTabControlStyle}" TargetType="telerik:RadTabControl">
62
                <Setter Property="telerik:TabNavigationExtensions.IsTabStop" Value="False" />
63
            </Style>
64
            <Style x:Key="PathButtonStyle" TargetType="{x:Type Path}">
65
                <Setter Property="Width" Value="12" />
66
                <Setter Property="Height" Value="12" />
67
                <Setter Property="Fill" Value="White" />
68
                <Setter Property="Stretch" Value="Fill" />
69
                <Setter Property="HorizontalAlignment" Value="Right" />
70
                <Setter Property="VerticalAlignment" Value="Center" />
71
            </Style>
72
            <Style x:Key="PathButtonCenterStyle" TargetType="{x:Type Path}">
73
                <Setter Property="Width" Value="12" />
74
                <Setter Property="Height" Value="12" />
75
                <Setter Property="Margin" Value="0" />
76
                <Setter Property="Fill" Value="#FF686868" />
77
                <Setter Property="Stretch" Value="Fill" />
78
                <Setter Property="HorizontalAlignment" Value="Center" />
79
                <Setter Property="VerticalAlignment" Value="Center" />
80
            </Style>
81
            <Style x:Key="IconPathButton" TargetType="{x:Type telerik:RadPathButton}">
82
                <Setter Property="Padding" Value="0" />
83
                <Setter Property="PathStyle" Value="{StaticResource PathButtonCenterStyle}" />
84
            </Style>
85
        </ResourceDictionary>
86

    
87
    </Application.Resources>
88
</Application>
클립보드 이미지 추가 (최대 크기: 500 MB)