프로젝트

일반

사용자정보

개정판 4fcb686a

ID4fcb686a2d4740f5eee8d44f69429ab17bd7489f
상위 a7bee7cf
하위 5ba8f2d5

김태성이(가) 2년 이상 전에 추가함

issue #000 font가 적용 되지 않아 box size가 작게 출력되는 문제

Change-Id: Ie07531db96d56e8d5c2bbdbf0786d053ad39747c

차이점 보기:

KCOM/App.xaml
1 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">
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">
9 8
    <Application.Resources>
10 9
        <ResourceDictionary>
11 10
            <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"/>
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" />
23 22
                <!--<ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/System.Windows.xaml"/>
24 23
                <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.xaml"/>
25 24
                <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Input.xaml"/>
......
27 26
                <ResourceDictionary Source="/Telerik.Windows.Themes.Office2016;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>-->
28 27

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

  
KCOM/Assets/RadGridViewStyleResourceDictionary.xaml
1 1
<ResourceDictionary
2
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
3
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" 
4
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d">
5
    <!-- Resource dictionary entries should be defined here. -->
6
    <SolidColorBrush x:Key="ControlOuterBorder" Color="#FF848484"/>
2
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
7
    mc:Ignorable="d">
8
    <!--  Resource dictionary entries should be defined here.  -->
9
    <SolidColorBrush x:Key="ControlOuterBorder" Color="#FF848484" />
7 10
    <ControlTemplate x:Key="DetailsPresenterTemplate" TargetType="telerik:DetailsPresenter">
8
        <Border x:Name="DetailsBorder" BorderBrush="{StaticResource ControlOuterBorder}" BorderThickness="0" OpacityMask="Black" Background="#FFF3A9A9">
11
        <Border
12
            x:Name="DetailsBorder"
13
            Background="#FFF3A9A9"
14
            BorderBrush="{StaticResource ControlOuterBorder}"
15
            BorderThickness="0"
16
            OpacityMask="Black">
17
            <Border Margin="0,0,0,0" BorderBrush="#FF728FB6">
18
                <ContentPresenter
19
                    x:Name="PART_ContentPresenter"
20
                    Margin="{TemplateBinding Padding}"
21
                    HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
22
                    VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
23
            </Border>
9 24
            <VisualStateManager.VisualStateGroups>
10 25
                <VisualStateGroup x:Name="DetailsStates">
11 26
                    <VisualState x:Name="DetailsVisible">
12 27
                        <Storyboard>
13
                            <ObjectAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetProperty="Visibility" Storyboard.TargetName="DetailsBorder">
28
                            <ObjectAnimationUsingKeyFrames
29
                                BeginTime="00:00:00"
30
                                Storyboard.TargetName="DetailsBorder"
31
                                Storyboard.TargetProperty="Visibility">
14 32
                                <DiscreteObjectKeyFrame KeyTime="0">
15 33
                                    <DiscreteObjectKeyFrame.Value>
16 34
                                        <Visibility>Visible</Visibility>
......
19 37
                            </ObjectAnimationUsingKeyFrames>
20 38
                        </Storyboard>
21 39
                    </VisualState>
22
                    <VisualState x:Name="DetailsCollapsed"/>
40
                    <VisualState x:Name="DetailsCollapsed" />
23 41
                </VisualStateGroup>
24 42
            </VisualStateManager.VisualStateGroups>
25
            <Border  BorderBrush="#FF728FB6" Margin="0,0,0,0">
26
                <ContentPresenter x:Name="PART_ContentPresenter" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
27
            </Border>
28 43
        </Border>
29 44
    </ControlTemplate>
30
    <LinearGradientBrush x:Key="GridView_RowDetailsBackground" EndPoint="0.5,1" StartPoint="0.5,0">
31
        <GradientStop Color="#FFC2C2C2"/>
32
        <GradientStop Color="#FFF0F0F0" Offset="0.3"/>
45
    <LinearGradientBrush x:Key="GridView_RowDetailsBackground" StartPoint="0.5,0" EndPoint="0.5,1">
46
        <GradientStop Color="#FFC2C2C2" />
47
        <GradientStop Offset="0.3" Color="#FFF0F0F0" />
33 48
    </LinearGradientBrush>
34
    <SolidColorBrush x:Key="ControlInnerBorder" Color="White"/>
49
    <SolidColorBrush x:Key="ControlInnerBorder" Color="White" />
35 50
    <Style x:Key="DetailsPresenterStyle" TargetType="telerik:DetailsPresenter">
36
        <Setter Property="Template" Value="{StaticResource DetailsPresenterTemplate}"/>
37
        <Setter Property="Visibility" Value="Collapsed"/>
38
        <Setter Property="IsTabStop" Value="False"/>
39
        <Setter Property="Background" Value="{StaticResource GridView_RowDetailsBackground}"/>
40
        <Setter Property="BorderBrush" Value="{StaticResource ControlInnerBorder}"/>
41
        <Setter Property="BorderThickness" Value="1"/>
42
        <Setter Property="Padding" Value="0"/>
43
        <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
51
        <Setter Property="Template" Value="{StaticResource DetailsPresenterTemplate}" />
52
        <Setter Property="Visibility" Value="Collapsed" />
53
        <Setter Property="IsTabStop" Value="False" />
54
        <Setter Property="Background" Value="{StaticResource GridView_RowDetailsBackground}" />
55
        <Setter Property="BorderBrush" Value="{StaticResource ControlInnerBorder}" />
56
        <Setter Property="BorderThickness" Value="1" />
57
        <Setter Property="Padding" Value="0" />
58
        <Setter Property="HorizontalContentAlignment" Value="Stretch" />
44 59
    </Style>
45
    <SolidColorBrush x:Key="ItemOuterBorder_Over" Color="#93C3F2"/>
46
    <SolidColorBrush x:Key="ItemInnerBorder_Over" Color="#2181FF"/>
47
    <SolidColorBrush x:Key="ItemBackground_Over" Color="Transparent"/>
48
    <SolidColorBrush x:Key="ItemOuterBorder_Selected" Color="#93C3F2"/>
49
    <SolidColorBrush x:Key="ItemInnerBorder_Selected" Color="#2181FF"/>
50
    <SolidColorBrush x:Key="ItemBackground_Selected" Color="Transparent"/>
51
    <SolidColorBrush x:Key="ItemOuterBorder_Invalid" Color="#FFCE7D7D"/>
52
    <LinearGradientBrush x:Key="ItemInnerBorder_Invalid" EndPoint="0.5,1" StartPoint="0.5,0">
53
        <GradientStop Color="#FFEBF4FD"/>
54
        <GradientStop Color="#FFDBEAFD" Offset="1"/>
60
    <SolidColorBrush x:Key="ItemOuterBorder_Over" Color="#93C3F2" />
61
    <SolidColorBrush x:Key="ItemInnerBorder_Over" Color="#2181FF" />
62
    <SolidColorBrush x:Key="ItemBackground_Over" Color="Transparent" />
63
    <SolidColorBrush x:Key="ItemOuterBorder_Selected" Color="#93C3F2" />
64
    <SolidColorBrush x:Key="ItemInnerBorder_Selected" Color="#2181FF" />
65
    <SolidColorBrush x:Key="ItemBackground_Selected" Color="Transparent" />
66
    <SolidColorBrush x:Key="ItemOuterBorder_Invalid" Color="#FFCE7D7D" />
67
    <LinearGradientBrush x:Key="ItemInnerBorder_Invalid" StartPoint="0.5,0" EndPoint="0.5,1">
68
        <GradientStop Color="#FFEBF4FD" />
69
        <GradientStop Offset="1" Color="#FFDBEAFD" />
55 70
    </LinearGradientBrush>
56
    <LinearGradientBrush x:Key="ItemBackground_Invalid" EndPoint="0.5,1" StartPoint="0.5,0">
57
        <GradientStop Color="#FFFCDCDC"/>
58
        <GradientStop Color="#FFFCC1C1" Offset="1"/>
71
    <LinearGradientBrush x:Key="ItemBackground_Invalid" StartPoint="0.5,0" EndPoint="0.5,1">
72
        <GradientStop Color="#FFFCDCDC" />
73
        <GradientStop Offset="1" Color="#FFFCC1C1" />
59 74
    </LinearGradientBrush>
60
    <telerik:BooleanToOpacityConverter x:Key="BooleanToOpacityConverter"/>
61
    <telerik:Office_BlackTheme x:Key="Theme"/>
62
    <telerik:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter"/>
63
    <telerik:GridLineWidthToThicknessConverter x:Key="GridLineWidthToThicknessConverter"/>
64
    <SolidColorBrush x:Key="GridView_HierarchyBackground" Color="#FFBBBBBB"/>
65
    <SolidColorBrush x:Key="GridView_RowIndicatorCellBackground" Color="#FFE4E4E4"/>
66
    <SolidColorBrush x:Key="GridView_NavigatorIndicatorBackground" Color="#FF848484"/>
67
    <SolidColorBrush x:Key="GridView_EditIndicatorBackground1" Color="#7F848484"/>
68
    <SolidColorBrush x:Key="GridView_EditIndicatorBackground2" Color="#FFCBCBCB"/>
69
    <SolidColorBrush x:Key="GridView_EditIndicatorBackground3" Color="#FF848484"/>
70
    <SolidColorBrush x:Key="GridView_EditIndicatorBackground4" Color="White"/>
71
    <LinearGradientBrush x:Key="GridView_ErrorIndicatorBackground1" EndPoint="0.5,1" StartPoint="0.5,0">
72
        <GradientStop Color="#FFFC9999" Offset="0"/>
73
        <GradientStop Color="#FFC26666" Offset="1"/>
75
    <telerik:BooleanToOpacityConverter x:Key="BooleanToOpacityConverter" />
76
    <telerik:Office_BlackTheme x:Key="Theme" />
77
    <telerik:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
78
    <telerik:GridLineWidthToThicknessConverter x:Key="GridLineWidthToThicknessConverter" />
79
    <SolidColorBrush x:Key="GridView_HierarchyBackground" Color="#FFBBBBBB" />
80
    <SolidColorBrush x:Key="GridView_RowIndicatorCellBackground" Color="#FFE4E4E4" />
81
    <SolidColorBrush x:Key="GridView_NavigatorIndicatorBackground" Color="#FF848484" />
82
    <SolidColorBrush x:Key="GridView_EditIndicatorBackground1" Color="#7F848484" />
83
    <SolidColorBrush x:Key="GridView_EditIndicatorBackground2" Color="#FFCBCBCB" />
84
    <SolidColorBrush x:Key="GridView_EditIndicatorBackground3" Color="#FF848484" />
85
    <SolidColorBrush x:Key="GridView_EditIndicatorBackground4" Color="White" />
86
    <LinearGradientBrush x:Key="GridView_ErrorIndicatorBackground1" StartPoint="0.5,0" EndPoint="0.5,1">
87
        <GradientStop Offset="0" Color="#FFFC9999" />
88
        <GradientStop Offset="1" Color="#FFC26666" />
74 89
    </LinearGradientBrush>
75
    <SolidColorBrush x:Key="GridView_ErrorIndicatorBackground2" Color="White"/>
76
    <LinearGradientBrush x:Key="GridView_ErrorIndicatorBackground3" EndPoint="0.5,1" StartPoint="0.5,0">
77
        <GradientStop Color="Red" Offset="0"/>
78
        <GradientStop Color="#FF990000" Offset="1"/>
90
    <SolidColorBrush x:Key="GridView_ErrorIndicatorBackground2" Color="White" />
91
    <LinearGradientBrush x:Key="GridView_ErrorIndicatorBackground3" StartPoint="0.5,0" EndPoint="0.5,1">
92
        <GradientStop Offset="0" Color="Red" />
93
        <GradientStop Offset="1" Color="#FF990000" />
79 94
    </LinearGradientBrush>
80 95
    <ControlTemplate x:Key="GridViewRow_ValidationToolTipTemplate" TargetType="ToolTip">
81
        <Grid x:Name="Root" Margin="5,0" Opacity="0" RenderTransformOrigin="0,0">
96
        <Grid
97
            x:Name="Root"
98
            Margin="5,0"
99
            Opacity="0"
100
            RenderTransformOrigin="0,0">
82 101
            <Grid.RenderTransform>
83
                <TranslateTransform x:Name="xform" X="-25"/>
102
                <TranslateTransform x:Name="xform" X="-25" />
84 103
            </Grid.RenderTransform>
104
            <Border
105
                Margin="4,4,-4,-4"
106
                Background="#052A2E31"
107
                CornerRadius="5" />
108
            <Border
109
                Margin="3,3,-3,-3"
110
                Background="#152A2E31"
111
                CornerRadius="4" />
112
            <Border
113
                Margin="2,2,-2,-2"
114
                Background="#252A2E31"
115
                CornerRadius="3" />
116
            <Border
117
                Margin="1,1,-1,-1"
118
                Background="#352A2E31"
119
                CornerRadius="2" />
120
            <Border Background="#FFDC000C" CornerRadius="2" />
121
            <Border CornerRadius="2">
122
                <ItemsControl ItemsSource="{TemplateBinding Content}">
123
                    <ItemsControl.ItemsPanel>
124
                        <ItemsPanelTemplate>
125
                            <StackPanel />
126
                        </ItemsPanelTemplate>
127
                    </ItemsControl.ItemsPanel>
128
                    <ItemsControl.ItemTemplate>
129
                        <DataTemplate>
130
                            <TextBlock
131
                                MaxWidth="250"
132
                                Margin="8,4,8,4"
133
                                Foreground="White"
134
                                Text="{Binding}"
135
                                TextWrapping="Wrap" />
136
                        </DataTemplate>
137
                    </ItemsControl.ItemTemplate>
138
                </ItemsControl>
139
            </Border>
85 140
            <VisualStateManager.VisualStateGroups>
86 141
                <VisualStateGroup x:Name="OpenStates">
87 142
                    <VisualStateGroup.Transitions>
88
                        <VisualTransition GeneratedDuration="0"/>
143
                        <VisualTransition GeneratedDuration="0" />
89 144
                        <VisualTransition GeneratedDuration="0:0:0.2" To="Open">
90 145
                            <Storyboard>
91
                                <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="X" Storyboard.TargetName="xform">
92
                                    <SplineDoubleKeyFrame KeyTime="0:0:0.2" Value="0"/>
146
                                <DoubleAnimationUsingKeyFrames Storyboard.TargetName="xform" Storyboard.TargetProperty="X">
147
                                    <SplineDoubleKeyFrame KeyTime="0:0:0.2" Value="0" />
93 148
                                </DoubleAnimationUsingKeyFrames>
94
                                <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="Opacity" Storyboard.TargetName="Root">
95
                                    <SplineDoubleKeyFrame KeyTime="0:0:0.2" Value="1"/>
149
                                <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Root" Storyboard.TargetProperty="Opacity">
150
                                    <SplineDoubleKeyFrame KeyTime="0:0:0.2" Value="1" />
96 151
                                </DoubleAnimationUsingKeyFrames>
97 152
                            </Storyboard>
98 153
                        </VisualTransition>
99 154
                    </VisualStateGroup.Transitions>
100 155
                    <VisualState x:Name="Closed">
101 156
                        <Storyboard>
102
                            <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="Opacity" Storyboard.TargetName="Root">
103
                                <SplineDoubleKeyFrame KeyTime="0" Value="0"/>
157
                            <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Root" Storyboard.TargetProperty="Opacity">
158
                                <SplineDoubleKeyFrame KeyTime="0" Value="0" />
104 159
                            </DoubleAnimationUsingKeyFrames>
105 160
                        </Storyboard>
106 161
                    </VisualState>
107 162
                    <VisualState x:Name="Open">
108 163
                        <Storyboard>
109
                            <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="X" Storyboard.TargetName="xform">
110
                                <SplineDoubleKeyFrame KeyTime="0" Value="0"/>
164
                            <DoubleAnimationUsingKeyFrames Storyboard.TargetName="xform" Storyboard.TargetProperty="X">
165
                                <SplineDoubleKeyFrame KeyTime="0" Value="0" />
111 166
                            </DoubleAnimationUsingKeyFrames>
112
                            <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="Opacity" Storyboard.TargetName="Root">
113
                                <SplineDoubleKeyFrame KeyTime="0" Value="1"/>
167
                            <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Root" Storyboard.TargetProperty="Opacity">
168
                                <SplineDoubleKeyFrame KeyTime="0" Value="1" />
114 169
                            </DoubleAnimationUsingKeyFrames>
115 170
                        </Storyboard>
116 171
                    </VisualState>
117 172
                </VisualStateGroup>
118 173
            </VisualStateManager.VisualStateGroups>
119
            <Border Background="#052A2E31" CornerRadius="5" Margin="4,4,-4,-4"/>
120
            <Border Background="#152A2E31" CornerRadius="4" Margin="3,3,-3,-3"/>
121
            <Border Background="#252A2E31" CornerRadius="3" Margin="2,2,-2,-2"/>
122
            <Border Background="#352A2E31" CornerRadius="2" Margin="1,1,-1,-1"/>
123
            <Border Background="#FFDC000C" CornerRadius="2"/>
124
            <Border CornerRadius="2">
125
                <ItemsControl ItemsSource="{TemplateBinding Content}">
126
                    <ItemsControl.ItemsPanel>
127
                        <ItemsPanelTemplate>
128
                            <StackPanel/>
129
                        </ItemsPanelTemplate>
130
                    </ItemsControl.ItemsPanel>
131
                    <ItemsControl.ItemTemplate>
132
                        <DataTemplate>
133
                            <TextBlock Foreground="White" MaxWidth="250" Margin="8,4,8,4" TextWrapping="Wrap" Text="{Binding}"/>
134
                        </DataTemplate>
135
                    </ItemsControl.ItemTemplate>
136
                </ItemsControl>
137
            </Border>
138 174
        </Grid>
139 175
    </ControlTemplate>
140
    <LinearGradientBrush x:Key="GridView_RowIndicatorCellBackground_Selected" EndPoint="0.5,1" StartPoint="0.5,0">
141
        <GradientStop Color="White" Offset="0"/>
142
        <GradientStop Color="#FFE4E4E4" Offset="1"/>
176
    <LinearGradientBrush x:Key="GridView_RowIndicatorCellBackground_Selected" StartPoint="0.5,0" EndPoint="0.5,1">
177
        <GradientStop Offset="0" Color="White" />
178
        <GradientStop Offset="1" Color="#FFE4E4E4" />
143 179
    </LinearGradientBrush>
144 180
    <ControlTemplate x:Key="GridViewRowTemplate" TargetType="telerik:GridViewRow">
145
        <Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}">
181
        <Border
182
            Background="{TemplateBinding Background}"
183
            BorderBrush="{TemplateBinding BorderBrush}"
184
            BorderThickness="{TemplateBinding BorderThickness}">
185
            <telerik:SelectiveScrollingGrid x:Name="grid">
186
                <telerik:SelectiveScrollingGrid.ColumnDefinitions>
187
                    <ColumnDefinition Width="Auto" />
188
                    <ColumnDefinition Width="Auto" />
189
                    <ColumnDefinition Width="Auto" />
190
                    <ColumnDefinition Width="*" />
191
                </telerik:SelectiveScrollingGrid.ColumnDefinitions>
192
                <telerik:SelectiveScrollingGrid.RowDefinitions>
193
                    <RowDefinition Height="*" />
194
                    <RowDefinition Height="Auto" />
195
                    <RowDefinition Height="Auto" />
196
                    <RowDefinition Height="Auto" />
197
                </telerik:SelectiveScrollingGrid.RowDefinitions>
198
                <Border
199
                    x:Name="SelectionBackground"
200
                    Grid.Column="2"
201
                    Grid.ColumnSpan="2"
202
                    MinWidth="{Binding RenderWidth, RelativeSource={RelativeSource TemplatedParent}}"
203
                    Margin="{TemplateBinding Margin}"
204
                    Padding="{TemplateBinding Padding}"
205
                    HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}"
206
                    VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
207
                    telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical"
208
                    Background="{TemplateBinding Background}" />
209
                <Border
210
                    x:Name="Background_Over"
211
                    Grid.Column="2"
212
                    Grid.ColumnSpan="2"
213
                    MinWidth="{Binding RenderWidth, RelativeSource={RelativeSource TemplatedParent}}"
214
                    Margin="1,1,1,2"
215
                    HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}"
216
                    telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical"
217
                    BorderBrush="{StaticResource ItemOuterBorder_Over}"
218
                    BorderThickness="1"
219
                    CornerRadius="1"
220
                    Visibility="Collapsed">
221
                    <Border
222
                        Background="{StaticResource ItemBackground_Over}"
223
                        BorderBrush="{StaticResource ItemInnerBorder_Over}"
224
                        BorderThickness="1" />
225
                </Border>
226
                <Border
227
                    x:Name="Background_Selected"
228
                    Grid.Column="2"
229
                    Grid.ColumnSpan="2"
230
                    MinWidth="{Binding RenderWidth, RelativeSource={RelativeSource TemplatedParent}}"
231
                    Margin="1,1,1,2"
232
                    HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}"
233
                    telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical"
234
                    BorderBrush="{StaticResource ItemOuterBorder_Selected}"
235
                    BorderThickness="1"
236
                    CornerRadius="1"
237
                    Visibility="Collapsed">
238
                    <Border
239
                        Background="{StaticResource ItemBackground_Selected}"
240
                        BorderBrush="{StaticResource ItemInnerBorder_Selected}"
241
                        BorderThickness="1" />
242
                </Border>
243
                <Border
244
                    x:Name="Background_Invalid"
245
                    Grid.Column="2"
246
                    Grid.ColumnSpan="2"
247
                    MinWidth="{Binding RenderWidth, RelativeSource={RelativeSource TemplatedParent}}"
248
                    Margin="1,1,1,2"
249
                    HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}"
250
                    telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical"
251
                    BorderBrush="{StaticResource ItemOuterBorder_Invalid}"
252
                    BorderThickness="1"
253
                    CornerRadius="1"
254
                    Visibility="Collapsed">
255
                    <Border
256
                        Background="{StaticResource ItemBackground_Invalid}"
257
                        BorderBrush="{StaticResource ItemInnerBorder_Invalid}"
258
                        BorderThickness="1" />
259
                </Border>
260
                <telerik:GridViewToggleButton
261
                    x:Name="PART_HierarchyExpandButton"
262
                    Grid.Column="2"
263
                    Width="25"
264
                    telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical"
265
                    telerik:StyleManager.Theme="{StaticResource Theme}"
266
                    IsChecked="{Binding IsExpanded, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
267
                    IsHitTestVisible="{Binding IsExpandable, RelativeSource={RelativeSource TemplatedParent}}"
268
                    IsTabStop="{TemplateBinding IsTabStop}"
269
                    Opacity="{Binding IsExpandable, Converter={StaticResource BooleanToOpacityConverter}, RelativeSource={RelativeSource TemplatedParent}}"
270
                    Visibility="{Binding HasHierarchy, Converter={StaticResource BooleanToVisibilityConverter}, RelativeSource={RelativeSource TemplatedParent}}" />
271
                <Border
272
                    Grid.Column="2"
273
                    telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical"
274
                    Visibility="{Binding HasHierarchy, Converter={StaticResource BooleanToVisibilityConverter}, RelativeSource={RelativeSource TemplatedParent}}" />
275
                <telerik:DataCellsPresenter
276
                    x:Name="PART_DataCellsPresenter"
277
                    Grid.Column="3"
278
                    telerik:StyleManager.Theme="{StaticResource Theme}" />
279
                <Border
280
                    x:Name="PART_RowBorder"
281
                    Grid.RowSpan="4"
282
                    Grid.Column="1"
283
                    Grid.ColumnSpan="4"
284
                    MinWidth="{Binding RenderWidth, RelativeSource={RelativeSource TemplatedParent}}"
285
                    HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}"
286
                    VerticalAlignment="Bottom"
287
                    telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical"
288
                    BorderBrush="{StaticResource HorizontalGridLinesBrush}"
289
                    BorderThickness="{Binding HorizontalGridLinesWidth, ConverterParameter=Bottom, Converter={StaticResource GridLineWidthToThicknessConverter}, RelativeSource={RelativeSource TemplatedParent}}" />
290
                <Border
291
                    Grid.Row="2"
292
                    Grid.Column="2"
293
                    Grid.ColumnSpan="2"
294
                    MaxWidth="30000"
295
                    Padding="6"
296
                    HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}"
297
                    telerik:SelectiveScrollingGrid.SelectiveScrollingClip="True"
298
                    Background="{StaticResource GridView_HierarchyBackground}"
299
                    BorderBrush="{StaticResource ControlOuterBorder}"
300
                    BorderThickness="0,1"
301
                    Visibility="{Binding IsExpanded, Converter={StaticResource BooleanToVisibilityConverter}, RelativeSource={RelativeSource TemplatedParent}}">
302
                    <ContentPresenter x:Name="PART_HierarchyChildPresenter" telerik:SelectiveScrollingGrid.SelectiveScrollingClip="True" />
303
                </Border>
304
                <telerik:DetailsPresenter
305
                    x:Name="PART_DetailsPresenter"
306
                    Grid.Row="1"
307
                    Grid.Column="2"
308
                    Grid.ColumnSpan="2"
309
                    MaxWidth="30000"
310
                    HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}"
311
                    telerik:SelectiveScrollingGrid.SelectiveScrollingClip="True"
312
                    telerik:StyleManager.Theme="{StaticResource Theme}"
313
                    Background="{TemplateBinding Background}"
314
                    BorderBrush="{x:Null}"
315
                    DetailsProvider="{Binding DetailsProvider}" />
316
                <telerik:IndentPresenter
317
                    x:Name="PART_IndentPresenter"
318
                    Grid.RowSpan="4"
319
                    Grid.Column="1"
320
                    telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical"
321
                    telerik:StyleManager.Theme="{StaticResource Theme}" />
322
                <Border
323
                    x:Name="PART_IndicatorPresenter"
324
                    Grid.RowSpan="3"
325
                    Grid.Column="0"
326
                    Width="25"
327
                    VerticalAlignment="Stretch"
328
                    telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical"
329
                    BorderBrush="{StaticResource ControlOuterBorder}"
330
                    BorderThickness="0,0,1,1"
331
                    Visibility="{TemplateBinding RowIndicatorVisibility}">
332
                    <Border
333
                        x:Name="NavigatorIndicatorBackground"
334
                        Background="{StaticResource GridView_RowIndicatorCellBackground}"
335
                        BorderBrush="{StaticResource ControlInnerBorder}"
336
                        BorderThickness="1">
337
                        <Grid>
338
                            <Grid
339
                                x:Name="NavigatorIndicator"
340
                                Width="11"
341
                                Height="11"
342
                                HorizontalAlignment="Center"
343
                                VerticalAlignment="Center"
344
                                Visibility="Collapsed">
345
                                <Path
346
                                    Width="8"
347
                                    Height="8"
348
                                    Margin="0"
349
                                    HorizontalAlignment="Center"
350
                                    VerticalAlignment="Center"
351
                                    Data="F1 M 32.0234,6.66669L 24.2923,0.0248413L 28.3697,0.0248413L 32,3.14362L 36.1492,6.70819L 32,10.2728L 28.4664,13.3085L 24.2923,13.3085L 32.0234,6.66669 Z "
352
                                    Fill="{StaticResource GridView_NavigatorIndicatorBackground}"
353
                                    Stretch="Fill" />
354
                            </Grid>
355
                            <Grid
356
                                x:Name="EditIndicator"
357
                                Width="16"
358
                                Height="10"
359
                                HorizontalAlignment="Center"
360
                                VerticalAlignment="Center"
361
                                Visibility="Collapsed">
362
                                <Path
363
                                    Data="M14,9 L15,9 15,10 14,10 z M1,9 L2,9 2,10 1,10 z M15,8 L16,8 16,9 15,9 z M0,8 L1,8 1,9 0,9 z M15,1 L16,1 16,2 15,2 z M0,1 L1,1 1,2 0,2 z M14,0 L15,0 15,1 14,1 z M1,0 L2,0 2,1 1,1 z"
364
                                    Fill="{StaticResource GridView_EditIndicatorBackground1}"
365
                                    Stretch="Fill" />
366
                                <Path
367
                                    Margin="1"
368
                                    Data="M0.99999994,6.9999995 L2,6.9999995 3,6.9999995 4,6.9999995 5,6.9999995 6,6.9999995 7,6.9999995 8,6.9999995 9,6.9999995 10,6.9999995 11,6.9999995 12,6.9999995 13,6.9999995 13,7.9999995 12,7.9999995 11,7.9999995 10,7.9999995 9,7.9999995 8,7.9999995 7,7.9999995 6,7.9999995 5,7.9999995 4,7.9999995 3,7.9999995&#xa;2,7.9999995 0.99999994,7.9999995 z M13,0.99999994 L14,0.99999994 14,1.9999999 14,2.9999995 14,3.9999995 14,4.9999995 14,5.9999995 14,6.9999995 13,6.9999995 13,5.9999995 13,4.9999995 13,3.9999995 13,2.9999995 13,1.9999999 z M0,0.99999994 L0.99999994,0.99999994 0.99999994,1.9999999 0.99999994,2.9999995 0.99999994,3.9999995 0.99999994,4.9999995 0.99999994,5.9999995 0.99999994,6.9999995 0,6.9999995 0,5.9999995 0,4.9999995 0,3.9999995 0,2.9999995 0,1.9999999 z M11,0 L12,0 13,0 13,0.99999994 12,0.99999994 11,0.99999994 10,0.99999994 9,0.99999994 8,0.99999994 7,0.99999994 6,0.99999994 5,0.99999994 4,0.99999994 3,0.99999994 2,0.99999994 0.99999994,0.99999994 0.99999994,2.3841858E-07 2,2.3841858E-07 3,2.3841858E-07 4,2.3841858E-07 5,2.3841858E-07 6,2.3841858E-07 7,2.3841858E-07 8,2.3841858E-07&#xa;9,2.3841858E-07 10,2.3841858E-07 z"
369
                                    Fill="{StaticResource GridView_EditIndicatorBackground2}"
370
                                    Stretch="Fill" />
371
                                <Path
372
                                    Data="M2,9 L3,9 4,9 5,9 6,9 7,9 8,9 9,9 10,9 11,9 12,9 13,9 14,9 14,10 13,10 12,10 11,10 10,10 9,10 8,10 7,10 6,10 5,10 4,10&#xa;3,10 2,10 z M14,8 L15,8 15,9 14,9 z M1,8 L2,8 2,9 1,9 z M15,2 L16,2 16,3 16,4 16,5 16,6 16,7 16,8 15,8 15,7 15,6 15,5 15,4 15,3 z M3,2 L4,2 5,2 6,2 6,3 5,3 5,4 5,5 5,6 5,7 6,7 6,8 5,8 4,8 3,8 3,7 4,7 4,6 4,5 4,4 4,3 3,3 z M0,2 L1,2 1,3 1,4 1,5 1,6 1,7 1,8 0,8 0,7 0,6 0,5 0,4 0,3 z M14,1 L15,1 15,2 14,2 z M1,1 L2,1 2,2 1,2 z M2,0 L3,0 4,0 5,0 6,0 7,0 8,0 9,0 10,0 11,0 12,0 13,0 14,0 14,1 13,1 12,1 11,1 10,1 9,1 8,1 7,1 6,1 5,1 4,1&#xa;3,1 2,1 z"
373
                                    Fill="{StaticResource GridView_EditIndicatorBackground3}"
374
                                    Stretch="Fill" />
375
                                <Path
376
                                    Margin="2"
377
                                    Data="M4,0 L5,0 6,0 7,0 8,0 9,0 10,0 11,0 12,0 12,1 12,2 12,3 12,4 12,5.0000001 12,6 11,6 10,6 9,6 8,6 7,6 6,6 5,6 4,6 4,5.0000001&#xa;3,5.0000001 3,4 3,3 3,2 3,1 4,1 z M0,0 L1,0 1,1 2,1 2,2 2,3 2,4 2,5.0000001 1,5.0000001 1,6 0,6 0,5.0000001 0,4 0,3 0,2 0,1 z"
378
                                    Fill="{StaticResource GridView_EditIndicatorBackground4}"
379
                                    Stretch="Fill" />
380
                            </Grid>
381
                            <Grid
382
                                x:Name="ErrorIndicator"
383
                                Width="16"
384
                                Height="16"
385
                                HorizontalAlignment="Center"
386
                                VerticalAlignment="Center"
387
                                Visibility="Collapsed">
388
                                <ToolTipService.ToolTip>
389
                                    <ToolTip
390
                                        x:Name="validationTooltip"
391
                                        Content="{Binding Errors}"
392
                                        Placement="Bottom"
393
                                        Template="{StaticResource GridViewRow_ValidationToolTipTemplate}" />
394
                                </ToolTipService.ToolTip>
395
                                <Path
396
                                    Margin="1"
397
                                    Data="M3,12.999999 L4,12.999999 5,12.999999 6,12.999999 7,12.999999 8,12.999999 9,12.999999 10,12.999999 11,12.999999 11,13.999999 10,13.999999 9,13.999999 8,13.999999 7,13.999999 6,13.999999 5,13.999999 4,13.999999 3,13.999999 z M11,11.999999 L12,11.999999 12,12.999999 11,12.999999 z M2.0000001,11.999999 L3,11.999999 3,12.999999 2.0000001,12.999999 z M12,10.999999 L13,10.999999 13,11.999999 12,11.999999 z M1,10.999999 L2.0000001,10.999999 2.0000001,11.999999 1,11.999999 z M13,2.9999992 L14,2.9999992 14,3.9999992 14,4.9999992 14,5.9999992 14,6.9999992 14,7.9999992 14,8.9999992 14,9.9999992 14,10.999999 13,10.999999 13,9.9999992 13,8.9999992 13,7.9999992 13,6.9999992 13,5.9999992 13,4.9999992 13,3.9999992 z M0,2.9999992 L1,2.9999992 1,3.9999992 1,4.9999992 1,5.9999992 1,6.9999992 1,7.9999992 1,8.9999992 1,9.9999992 1,10.999999 0,10.999999 0,9.9999992 0,8.9999992 0,7.9999992 0,6.9999992 0,5.9999992 0,4.9999992 0,3.9999992 z M12,1.9999999 L13,1.9999999 13,2.9999992 12,2.9999992 z M1,1.9999999 L2.0000001,1.9999999 2.0000001,2.9999992 1,2.9999992 z M11,0.99999994 L12,0.99999994 12,1.9999999 11,1.9999999 z M2.0000001,0.99999994 L2.9999998,0.99999994 2.9999998,1.9999999 2.0000001,1.9999999 z M2.9999998,0 L3.9999998,0 5,0 6,0 7,0 8,0 9,0 10,0 11,0 11,0.99999994 10,0.99999994 9,0.99999994 8,0.99999994 7,0.99999994 6,0.99999994 5,0.99999994 3.9999998,0.99999994 2.9999998,0.99999994 z"
398
                                    Fill="{StaticResource GridView_ErrorIndicatorBackground1}"
399
                                    Stretch="Fill" />
400
                                <Path
401
                                    Margin="7,3"
402
                                    Data="M1.4901161E-07,8 L1.0000001,8 2.0000002,8 2.0000002,9 2.0000002,10 1.0000003,10 1.0000003,9 1.0000001,10 1.4901161E-07,10 1.4901161E-07,9 z M1.4901161E-07,0 L1.0000001,0 2.0000002,0 2.0000002,1 2.0000002,2 2.0000002,3 2.0000002,4.0000001 2.0000002,5 2.0000002,5.9999999 2.0000002,7 1.0000001,7 1.4901161E-07,7 1.4901161E-07,5.9999999 1.4901161E-07,5 1.4901161E-07,4.0000001 1.4901161E-07,3 1.4901161E-07,2 0,1 z"
403
                                    Fill="{StaticResource GridView_ErrorIndicatorBackground2}"
404
                                    Stretch="Fill" />
405
                                <Path
406
                                    Data="M4,15 L5,15 6,15 7,15 8,15 9,15 10,15 11,15 12,15 12,16 11,16 10,16 9,16 8,16 7,16 6,16 5,16 4,16 z M12,14 L13,14 13,15 12,15 z M3,14 L4,14 4,15 3,15 z M13,13 L14,13 14,14 13,14 z M2,13 L3,13 3,14 2,14 z M14,12 L15,12 15,13 14,13 z M1,12 L2,12 2,13 1,13 z M7,11 L7,12 7,13 8,13 9,13 9,12 9,11 8,11 z M15,4 L16,4 16,5 16,6 16,7 16,8 16,9 16,10 16,11 16,12 15,12 15,11 15,10 15,9 15,8 15,7 15,6 15,5 z M0,4 L1,4 1,5 1,6 1,7 1,8 1,9 1,10 1,11 1,12 0,12 0,11 0,10 0,9 0,8 0,7 0,6 0,5 z M14,3 L15,3 15,4 14,4 z M7,3 L7,4 7,5 7,6 7,7 7,8 7,9 7,10 8,10 9,10 9,9 9,8 9,7 9,6 9,5 9,4 9,3 8,3 z M1,3 L2,3 2,4 1,4 z M13,2 L14,2 14,3 13,3 z M4,2 L5,2 6,2 7,2 8,2 9,2 10,2 11,2 12,2 12,3 13,3 13,4 14,4 14,5 14,6 14,7 14,8 14,9 14,10 14,11 14,12 13,12 13,13 12,13&#xa;12,14 11,14 10,14 9,14 8,14 7,14 6,14 5,14 4,14 4,13 3,13 3,12 2,12 2,11 2,10 2,9 2,8 2,7 2,6 2,5 2,4 3,4 3,3&#xa;4,3 z M2,2 L3,2 3,3 2,3 z M12,1 L13,1 13,2 12,2 z M3,1 L4,1 4,2 3,2 z M4,0 L5,0 6,0 7,0 8,0 9,0 10,0 11,0 12,0 12,1 11,1 10,1 9,1 8,1 7,1 6,1 5,1 4,1 z"
407
                                    Fill="{StaticResource GridView_ErrorIndicatorBackground3}"
408
                                    Stretch="Fill" />
409
                            </Grid>
410
                            <Border
411
                                x:Name="PART_RowResizer"
412
                                Height="2"
413
                                VerticalAlignment="Bottom"
414
                                Background="Transparent"
415
                                Cursor="SizeNS" />
416
                        </Grid>
417
                    </Border>
418
                </Border>
419
            </telerik:SelectiveScrollingGrid>
146 420
            <VisualStateManager.VisualStateGroups>
147 421
                <VisualStateGroup x:Name="FocusStates">
148
                    <VisualState x:Name="Unfocused"/>
422
                    <VisualState x:Name="Unfocused" />
149 423
                    <VisualState x:Name="Focused">
150 424
                        <Storyboard>
151
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Visibility)" Storyboard.TargetName="NavigatorIndicator">
425
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetName="NavigatorIndicator" Storyboard.TargetProperty="(UIElement.Visibility)">
152 426
                                <DiscreteObjectKeyFrame KeyTime="0">
153 427
                                    <DiscreteObjectKeyFrame.Value>
154 428
                                        <Visibility>Visible</Visibility>
......
159 433
                    </VisualState>
160 434
                </VisualStateGroup>
161 435
                <VisualStateGroup x:Name="SelectionStates">
162
                    <VisualState x:Name="Unselected"/>
436
                    <VisualState x:Name="Unselected" />
163 437
                    <VisualState x:Name="SelectedUnfocused">
164 438
                        <Storyboard>
165
                            <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="(UIElement.Visibility)" Storyboard.TargetName="Background_Over">
439
                            <ObjectAnimationUsingKeyFrames
440
                                Storyboard.TargetName="Background_Over"
441
                                Storyboard.TargetProperty="(UIElement.Visibility)"
442
                                Duration="0">
166 443
                                <DiscreteObjectKeyFrame KeyTime="0">
167 444
                                    <DiscreteObjectKeyFrame.Value>
168 445
                                        <Visibility>Visible</Visibility>
......
173 450
                    </VisualState>
174 451
                </VisualStateGroup>
175 452
                <VisualStateGroup x:Name="CommonStates">
176
                    <VisualState x:Name="Normal"/>
453
                    <VisualState x:Name="Normal" />
177 454
                    <VisualState x:Name="MouseOver">
178 455
                        <Storyboard>
179
                            <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="(UIElement.Visibility)" Storyboard.TargetName="Background_Over">
456
                            <ObjectAnimationUsingKeyFrames
457
                                Storyboard.TargetName="Background_Over"
458
                                Storyboard.TargetProperty="(UIElement.Visibility)"
459
                                Duration="0">
180 460
                                <DiscreteObjectKeyFrame KeyTime="0">
181 461
                                    <DiscreteObjectKeyFrame.Value>
182 462
                                        <Visibility>Visible</Visibility>
......
187 467
                    </VisualState>
188 468
                    <VisualState x:Name="Selected">
189 469
                        <Storyboard>
190
                            <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="(UIElement.Visibility)" Storyboard.TargetName="Background_Selected">
470
                            <ObjectAnimationUsingKeyFrames
471
                                Storyboard.TargetName="Background_Selected"
472
                                Storyboard.TargetProperty="(UIElement.Visibility)"
473
                                Duration="0">
191 474
                                <DiscreteObjectKeyFrame KeyTime="0">
192 475
                                    <DiscreteObjectKeyFrame.Value>
193 476
                                        <Visibility>Visible</Visibility>
194 477
                                    </DiscreteObjectKeyFrame.Value>
195 478
                                </DiscreteObjectKeyFrame>
196 479
                            </ObjectAnimationUsingKeyFrames>
197
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Background" Storyboard.TargetName="NavigatorIndicatorBackground">
198
                                <DiscreteObjectKeyFrame KeyTime="0:0:0" Value="{StaticResource GridView_RowIndicatorCellBackground_Selected}"/>
480
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetName="NavigatorIndicatorBackground" Storyboard.TargetProperty="Background">
481
                                <DiscreteObjectKeyFrame KeyTime="0:0:0" Value="{StaticResource GridView_RowIndicatorCellBackground_Selected}" />
199 482
                            </ObjectAnimationUsingKeyFrames>
200 483
                        </Storyboard>
201 484
                    </VisualState>
202 485
                </VisualStateGroup>
203 486
                <VisualStateGroup x:Name="ValueStates">
204
                    <VisualState x:Name="RowValid"/>
487
                    <VisualState x:Name="RowValid" />
205 488
                    <VisualState x:Name="RowInvalid">
206 489
                        <Storyboard>
207
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Visibility)" Storyboard.TargetName="Background_Invalid">
490
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetName="Background_Invalid" Storyboard.TargetProperty="(UIElement.Visibility)">
208 491
                                <DiscreteObjectKeyFrame KeyTime="0">
209 492
                                    <DiscreteObjectKeyFrame.Value>
210 493
                                        <Visibility>Visible</Visibility>
211 494
                                    </DiscreteObjectKeyFrame.Value>
212 495
                                </DiscreteObjectKeyFrame>
213 496
                            </ObjectAnimationUsingKeyFrames>
214
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Visibility)" Storyboard.TargetName="ErrorIndicator">
497
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetName="ErrorIndicator" Storyboard.TargetProperty="(UIElement.Visibility)">
215 498
                                <DiscreteObjectKeyFrame KeyTime="0">
216 499
                                    <DiscreteObjectKeyFrame.Value>
217 500
                                        <Visibility>Visible</Visibility>
......
222 505
                    </VisualState>
223 506
                </VisualStateGroup>
224 507
                <VisualStateGroup x:Name="EditStates">
225
                    <VisualState x:Name="ReadOnlyMode"/>
508
                    <VisualState x:Name="ReadOnlyMode" />
226 509
                    <VisualState x:Name="EditMode">
227 510
                        <Storyboard>
228
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Visibility" Storyboard.TargetName="EditIndicator">
511
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetName="EditIndicator" Storyboard.TargetProperty="Visibility">
229 512
                                <DiscreteObjectKeyFrame KeyTime="0">
230 513
                                    <DiscreteObjectKeyFrame.Value>
231 514
                                        <Visibility>Visible</Visibility>
......
236 519
                    </VisualState>
237 520
                </VisualStateGroup>
238 521
            </VisualStateManager.VisualStateGroups>
239
            <telerik:SelectiveScrollingGrid x:Name="grid">
240
                <telerik:SelectiveScrollingGrid.ColumnDefinitions>
241
                    <ColumnDefinition Width="Auto"/>
242
                    <ColumnDefinition Width="Auto"/>
243
                    <ColumnDefinition Width="Auto"/>
244
                    <ColumnDefinition Width="*"/>
245
                </telerik:SelectiveScrollingGrid.ColumnDefinitions>
246
                <telerik:SelectiveScrollingGrid.RowDefinitions>
247
                    <RowDefinition Height="*"/>
248
                    <RowDefinition Height="Auto"/>
249
                    <RowDefinition Height="Auto"/>
250
                    <RowDefinition Height="Auto"/>
251
                </telerik:SelectiveScrollingGrid.RowDefinitions>
252
                <Border x:Name="SelectionBackground" Background="{TemplateBinding Background}" Grid.ColumnSpan="2" Grid.Column="2" HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}" Margin="{TemplateBinding Margin}" MinWidth="{Binding RenderWidth, RelativeSource={RelativeSource TemplatedParent}}" Padding="{TemplateBinding Padding}" telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
253
                <Border x:Name="Background_Over" BorderBrush="{StaticResource ItemOuterBorder_Over}" BorderThickness="1" Grid.ColumnSpan="2" Grid.Column="2" CornerRadius="1" HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}" Margin="1,1,1,2" MinWidth="{Binding RenderWidth, RelativeSource={RelativeSource TemplatedParent}}" telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" Visibility="Collapsed">
254
                    <Border BorderBrush="{StaticResource ItemInnerBorder_Over}" BorderThickness="1" Background="{StaticResource ItemBackground_Over}"/>
255
                </Border>
256
                <Border x:Name="Background_Selected" BorderBrush="{StaticResource ItemOuterBorder_Selected}" BorderThickness="1" Grid.ColumnSpan="2" Grid.Column="2" CornerRadius="1" HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}" Margin="1,1,1,2" MinWidth="{Binding RenderWidth, RelativeSource={RelativeSource TemplatedParent}}" telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" Visibility="Collapsed">
257
                    <Border BorderBrush="{StaticResource ItemInnerBorder_Selected}" BorderThickness="1" Background="{StaticResource ItemBackground_Selected}"/>
258
                </Border>
259
                <Border x:Name="Background_Invalid" BorderBrush="{StaticResource ItemOuterBorder_Invalid}" BorderThickness="1" Grid.ColumnSpan="2" Grid.Column="2" CornerRadius="1" HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}" Margin="1,1,1,2" MinWidth="{Binding RenderWidth, RelativeSource={RelativeSource TemplatedParent}}" telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" Visibility="Collapsed">
260
                    <Border BorderBrush="{StaticResource ItemInnerBorder_Invalid}" BorderThickness="1" Background="{StaticResource ItemBackground_Invalid}"/>
261
                </Border>
262
                <telerik:GridViewToggleButton x:Name="PART_HierarchyExpandButton" Grid.Column="2" IsHitTestVisible="{Binding IsExpandable, RelativeSource={RelativeSource TemplatedParent}}" IsTabStop="{TemplateBinding IsTabStop}" IsChecked="{Binding IsExpanded, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}" Opacity="{Binding IsExpandable, Converter={StaticResource BooleanToOpacityConverter}, RelativeSource={RelativeSource TemplatedParent}}" telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" telerik:StyleManager.Theme="{StaticResource Theme}" Visibility="{Binding HasHierarchy, Converter={StaticResource BooleanToVisibilityConverter}, RelativeSource={RelativeSource TemplatedParent}}" Width="25"/>
263
                <Border Grid.Column="2" telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" Visibility="{Binding HasHierarchy, Converter={StaticResource BooleanToVisibilityConverter}, RelativeSource={RelativeSource TemplatedParent}}"/>
264
                <telerik:DataCellsPresenter x:Name="PART_DataCellsPresenter" Grid.Column="3" telerik:StyleManager.Theme="{StaticResource Theme}"/>
265
                <Border x:Name="PART_RowBorder" BorderBrush="{StaticResource HorizontalGridLinesBrush}" BorderThickness="{Binding HorizontalGridLinesWidth, ConverterParameter=Bottom, Converter={StaticResource GridLineWidthToThicknessConverter}, RelativeSource={RelativeSource TemplatedParent}}" Grid.ColumnSpan="4" Grid.Column="1" HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}" MinWidth="{Binding RenderWidth, RelativeSource={RelativeSource TemplatedParent}}" Grid.RowSpan="4" telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" VerticalAlignment="Bottom"/>
266
                <Border BorderBrush="{StaticResource ControlOuterBorder}" BorderThickness="0,1" Background="{StaticResource GridView_HierarchyBackground}" Grid.ColumnSpan="2" Grid.Column="2" HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}" MaxWidth="30000" Padding="6" Grid.Row="2" telerik:SelectiveScrollingGrid.SelectiveScrollingClip="True" Visibility="{Binding IsExpanded, Converter={StaticResource BooleanToVisibilityConverter}, RelativeSource={RelativeSource TemplatedParent}}">
267
                    <ContentPresenter x:Name="PART_HierarchyChildPresenter" telerik:SelectiveScrollingGrid.SelectiveScrollingClip="True"/>
268
                </Border>
269
                <telerik:DetailsPresenter x:Name="PART_DetailsPresenter" Grid.ColumnSpan="2" Grid.Column="2" DetailsProvider="{Binding DetailsProvider}" HorizontalAlignment="{Binding RenderHorizontalAlignment, RelativeSource={RelativeSource TemplatedParent}}" MaxWidth="30000" Grid.Row="1" telerik:SelectiveScrollingGrid.SelectiveScrollingClip="True" telerik:StyleManager.Theme="{StaticResource Theme}" Background="{TemplateBinding Background}" BorderBrush="{x:Null}"/>
270
                <telerik:IndentPresenter x:Name="PART_IndentPresenter" Grid.Column="1"  Grid.RowSpan="4" telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" telerik:StyleManager.Theme="{StaticResource Theme}"/>
271
                <Border x:Name="PART_IndicatorPresenter" BorderBrush="{StaticResource ControlOuterBorder}" BorderThickness="0,0,1,1" Grid.Column="0" Grid.RowSpan="3" telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" Visibility="{TemplateBinding RowIndicatorVisibility}" VerticalAlignment="Stretch" Width="25">
272
                    <Border x:Name="NavigatorIndicatorBackground" BorderBrush="{StaticResource ControlInnerBorder}" BorderThickness="1" Background="{StaticResource GridView_RowIndicatorCellBackground}">
273
                        <Grid>
274
                            <Grid x:Name="NavigatorIndicator" HorizontalAlignment="Center" Height="11" Visibility="Collapsed" VerticalAlignment="Center" Width="11">
275
                                <Path Data="F1 M 32.0234,6.66669L 24.2923,0.0248413L 28.3697,0.0248413L 32,3.14362L 36.1492,6.70819L 32,10.2728L 28.4664,13.3085L 24.2923,13.3085L 32.0234,6.66669 Z " Fill="{StaticResource GridView_NavigatorIndicatorBackground}" HorizontalAlignment="Center" Height="8" Margin="0" Stretch="Fill" VerticalAlignment="Center" Width="8"/>
276
                            </Grid>
277
                            <Grid x:Name="EditIndicator" HorizontalAlignment="Center" Height="10" Visibility="Collapsed" VerticalAlignment="Center" Width="16">
278
                                <Path Data="M14,9 L15,9 15,10 14,10 z M1,9 L2,9 2,10 1,10 z M15,8 L16,8 16,9 15,9 z M0,8 L1,8 1,9 0,9 z M15,1 L16,1 16,2 15,2 z M0,1 L1,1 1,2 0,2 z M14,0 L15,0 15,1 14,1 z M1,0 L2,0 2,1 1,1 z" Fill="{StaticResource GridView_EditIndicatorBackground1}" Stretch="Fill"/>
279
                                <Path Data="M0.99999994,6.9999995 L2,6.9999995 3,6.9999995 4,6.9999995 5,6.9999995 6,6.9999995 7,6.9999995 8,6.9999995 9,6.9999995 10,6.9999995 11,6.9999995 12,6.9999995 13,6.9999995 13,7.9999995 12,7.9999995 11,7.9999995 10,7.9999995 9,7.9999995 8,7.9999995 7,7.9999995 6,7.9999995 5,7.9999995 4,7.9999995 3,7.9999995&#xa;2,7.9999995 0.99999994,7.9999995 z M13,0.99999994 L14,0.99999994 14,1.9999999 14,2.9999995 14,3.9999995 14,4.9999995 14,5.9999995 14,6.9999995 13,6.9999995 13,5.9999995 13,4.9999995 13,3.9999995 13,2.9999995 13,1.9999999 z M0,0.99999994 L0.99999994,0.99999994 0.99999994,1.9999999 0.99999994,2.9999995 0.99999994,3.9999995 0.99999994,4.9999995 0.99999994,5.9999995 0.99999994,6.9999995 0,6.9999995 0,5.9999995 0,4.9999995 0,3.9999995 0,2.9999995 0,1.9999999 z M11,0 L12,0 13,0 13,0.99999994 12,0.99999994 11,0.99999994 10,0.99999994 9,0.99999994 8,0.99999994 7,0.99999994 6,0.99999994 5,0.99999994 4,0.99999994 3,0.99999994 2,0.99999994 0.99999994,0.99999994 0.99999994,2.3841858E-07 2,2.3841858E-07 3,2.3841858E-07 4,2.3841858E-07 5,2.3841858E-07 6,2.3841858E-07 7,2.3841858E-07 8,2.3841858E-07&#xa;9,2.3841858E-07 10,2.3841858E-07 z" Fill="{StaticResource GridView_EditIndicatorBackground2}" Margin="1" Stretch="Fill"/>
280
                                <Path Data="M2,9 L3,9 4,9 5,9 6,9 7,9 8,9 9,9 10,9 11,9 12,9 13,9 14,9 14,10 13,10 12,10 11,10 10,10 9,10 8,10 7,10 6,10 5,10 4,10&#xa;3,10 2,10 z M14,8 L15,8 15,9 14,9 z M1,8 L2,8 2,9 1,9 z M15,2 L16,2 16,3 16,4 16,5 16,6 16,7 16,8 15,8 15,7 15,6 15,5 15,4 15,3 z M3,2 L4,2 5,2 6,2 6,3 5,3 5,4 5,5 5,6 5,7 6,7 6,8 5,8 4,8 3,8 3,7 4,7 4,6 4,5 4,4 4,3 3,3 z M0,2 L1,2 1,3 1,4 1,5 1,6 1,7 1,8 0,8 0,7 0,6 0,5 0,4 0,3 z M14,1 L15,1 15,2 14,2 z M1,1 L2,1 2,2 1,2 z M2,0 L3,0 4,0 5,0 6,0 7,0 8,0 9,0 10,0 11,0 12,0 13,0 14,0 14,1 13,1 12,1 11,1 10,1 9,1 8,1 7,1 6,1 5,1 4,1&#xa;3,1 2,1 z" Fill="{StaticResource GridView_EditIndicatorBackground3}" Stretch="Fill"/>
281
                                <Path Data="M4,0 L5,0 6,0 7,0 8,0 9,0 10,0 11,0 12,0 12,1 12,2 12,3 12,4 12,5.0000001 12,6 11,6 10,6 9,6 8,6 7,6 6,6 5,6 4,6 4,5.0000001&#xa;3,5.0000001 3,4 3,3 3,2 3,1 4,1 z M0,0 L1,0 1,1 2,1 2,2 2,3 2,4 2,5.0000001 1,5.0000001 1,6 0,6 0,5.0000001 0,4 0,3 0,2 0,1 z" Fill="{StaticResource GridView_EditIndicatorBackground4}" Margin="2" Stretch="Fill"/>
282
                            </Grid>
283
                            <Grid x:Name="ErrorIndicator" HorizontalAlignment="Center" Height="16" Visibility="Collapsed" VerticalAlignment="Center" Width="16">
284
                                <ToolTipService.ToolTip>
285
                                    <ToolTip x:Name="validationTooltip" Content="{Binding Errors}" Placement="Bottom" Template="{StaticResource GridViewRow_ValidationToolTipTemplate}"/>
286
                                </ToolTipService.ToolTip>
287
                                <Path Data="M3,12.999999 L4,12.999999 5,12.999999 6,12.999999 7,12.999999 8,12.999999 9,12.999999 10,12.999999 11,12.999999 11,13.999999 10,13.999999 9,13.999999 8,13.999999 7,13.999999 6,13.999999 5,13.999999 4,13.999999 3,13.999999 z M11,11.999999 L12,11.999999 12,12.999999 11,12.999999 z M2.0000001,11.999999 L3,11.999999 3,12.999999 2.0000001,12.999999 z M12,10.999999 L13,10.999999 13,11.999999 12,11.999999 z M1,10.999999 L2.0000001,10.999999 2.0000001,11.999999 1,11.999999 z M13,2.9999992 L14,2.9999992 14,3.9999992 14,4.9999992 14,5.9999992 14,6.9999992 14,7.9999992 14,8.9999992 14,9.9999992 14,10.999999 13,10.999999 13,9.9999992 13,8.9999992 13,7.9999992 13,6.9999992 13,5.9999992 13,4.9999992 13,3.9999992 z M0,2.9999992 L1,2.9999992 1,3.9999992 1,4.9999992 1,5.9999992 1,6.9999992 1,7.9999992 1,8.9999992 1,9.9999992 1,10.999999 0,10.999999 0,9.9999992 0,8.9999992 0,7.9999992 0,6.9999992 0,5.9999992 0,4.9999992 0,3.9999992 z M12,1.9999999 L13,1.9999999 13,2.9999992 12,2.9999992 z M1,1.9999999 L2.0000001,1.9999999 2.0000001,2.9999992 1,2.9999992 z M11,0.99999994 L12,0.99999994 12,1.9999999 11,1.9999999 z M2.0000001,0.99999994 L2.9999998,0.99999994 2.9999998,1.9999999 2.0000001,1.9999999 z M2.9999998,0 L3.9999998,0 5,0 6,0 7,0 8,0 9,0 10,0 11,0 11,0.99999994 10,0.99999994 9,0.99999994 8,0.99999994 7,0.99999994 6,0.99999994 5,0.99999994 3.9999998,0.99999994 2.9999998,0.99999994 z" Fill="{StaticResource GridView_ErrorIndicatorBackground1}" Margin="1" Stretch="Fill"/>
288
                                <Path Data="M1.4901161E-07,8 L1.0000001,8 2.0000002,8 2.0000002,9 2.0000002,10 1.0000003,10 1.0000003,9 1.0000001,10 1.4901161E-07,10 1.4901161E-07,9 z M1.4901161E-07,0 L1.0000001,0 2.0000002,0 2.0000002,1 2.0000002,2 2.0000002,3 2.0000002,4.0000001 2.0000002,5 2.0000002,5.9999999 2.0000002,7 1.0000001,7 1.4901161E-07,7 1.4901161E-07,5.9999999 1.4901161E-07,5 1.4901161E-07,4.0000001 1.4901161E-07,3 1.4901161E-07,2 0,1 z" Fill="{StaticResource GridView_ErrorIndicatorBackground2}" Margin="7,3" Stretch="Fill"/>
289
                                <Path Data="M4,15 L5,15 6,15 7,15 8,15 9,15 10,15 11,15 12,15 12,16 11,16 10,16 9,16 8,16 7,16 6,16 5,16 4,16 z M12,14 L13,14 13,15 12,15 z M3,14 L4,14 4,15 3,15 z M13,13 L14,13 14,14 13,14 z M2,13 L3,13 3,14 2,14 z M14,12 L15,12 15,13 14,13 z M1,12 L2,12 2,13 1,13 z M7,11 L7,12 7,13 8,13 9,13 9,12 9,11 8,11 z M15,4 L16,4 16,5 16,6 16,7 16,8 16,9 16,10 16,11 16,12 15,12 15,11 15,10 15,9 15,8 15,7 15,6 15,5 z M0,4 L1,4 1,5 1,6 1,7 1,8 1,9 1,10 1,11 1,12 0,12 0,11 0,10 0,9 0,8 0,7 0,6 0,5 z M14,3 L15,3 15,4 14,4 z M7,3 L7,4 7,5 7,6 7,7 7,8 7,9 7,10 8,10 9,10 9,9 9,8 9,7 9,6 9,5 9,4 9,3 8,3 z M1,3 L2,3 2,4 1,4 z M13,2 L14,2 14,3 13,3 z M4,2 L5,2 6,2 7,2 8,2 9,2 10,2 11,2 12,2 12,3 13,3 13,4 14,4 14,5 14,6 14,7 14,8 14,9 14,10 14,11 14,12 13,12 13,13 12,13&#xa;12,14 11,14 10,14 9,14 8,14 7,14 6,14 5,14 4,14 4,13 3,13 3,12 2,12 2,11 2,10 2,9 2,8 2,7 2,6 2,5 2,4 3,4 3,3&#xa;4,3 z M2,2 L3,2 3,3 2,3 z M12,1 L13,1 13,2 12,2 z M3,1 L4,1 4,2 3,2 z M4,0 L5,0 6,0 7,0 8,0 9,0 10,0 11,0 12,0 12,1 11,1 10,1 9,1 8,1 7,1 6,1 5,1 4,1 z" Fill="{StaticResource GridView_ErrorIndicatorBackground3}" Stretch="Fill"/>
290
                            </Grid>
291
                            <Border x:Name="PART_RowResizer" Background="Transparent" Cursor="SizeNS" Height="2" VerticalAlignment="Bottom"/>
292
                        </Grid>
293
                    </Border>
294
                </Border>
295
            </telerik:SelectiveScrollingGrid>
296 522
        </Border>
297 523
    </ControlTemplate>
298
    <SolidColorBrush x:Key="ItemBackground" Color="White"/>
299
    <SolidColorBrush x:Key="GridView_GridLinesItemBorder" Color="#FFCBCBCB"/>
524
    <SolidColorBrush x:Key="ItemBackground" Color="White" />
525
    <SolidColorBrush x:Key="GridView_GridLinesItemBorder" Color="#FFCBCBCB" />
300 526
    <Style x:Key="GridViewRowStyle" TargetType="telerik:GridViewRow">
301
        <Setter Property="IsTabStop" Value="False"/>
302
        <Setter Property="Template" Value="{StaticResource GridViewRowTemplate}"/>
303
        <Setter Property="Background" Value="{StaticResource ItemBackground}"/>
304
        <Setter Property="BorderBrush" Value="{StaticResource GridView_GridLinesItemBorder}"/>
305
        <Setter Property="BorderThickness" Value="0"/>
306
        <Setter Property="AllowDrop" Value="True"/>
307
        <Setter Property="FontWeight" Value="Normal"/>
308
        <Setter Property="VerticalContentAlignment" Value="Stretch"/>
309
        <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
310
        <Setter Property="Padding" Value="0"/>
527
        <Setter Property="IsTabStop" Value="False" />
528
        <Setter Property="Template" Value="{StaticResource GridViewRowTemplate}" />
529
        <Setter Property="Background" Value="{StaticResource ItemBackground}" />
530
        <Setter Property="BorderBrush" Value="{StaticResource GridView_GridLinesItemBorder}" />
531
        <Setter Property="BorderThickness" Value="0" />
532
        <Setter Property="AllowDrop" Value="True" />
533
        <Setter Property="FontWeight" Value="Normal" />
534
        <Setter Property="VerticalContentAlignment" Value="Stretch" />
535
        <Setter Property="HorizontalContentAlignment" Value="Stretch" />
536
        <Setter Property="Padding" Value="0" />
311 537
    </Style>
312 538
</ResourceDictionary>
KCOM/Common/InitData.cs
62 62
            {
63 63
                if((item as Markus.Fonts.MarkusFont).FontFamily.FontName() == fontFamily.FontName())
64 64
                {
65
                    IsSuspendChange = true;
65 66
                    comboFontFamily.SelectedItem = item;
67
                    IsSuspendChange = false;
66 68
                    return;
67 69
                }
68 70
            }
69 71
        }
72

  
73
        public Markus.Fonts.MarkusFont GetFontFamily()
74
        {
75
            if (comboFontFamily.SelectedItem != null)
76
            {
77
                return comboFontFamily.SelectedItem as Markus.Fonts.MarkusFont;
78
            }
79
            else
80
            {
81
               return new Markus.Fonts.MarkusFont();
82
            }
83
        }
84

  
85
        /// <summary>
86
        /// font change event suspend
87
        /// </summary>
88
        public bool IsSuspendChange;
70 89
        
71 90
        /// <summary>
72 91
        /// 폰트 설치 여부 구하기
KCOM/Events/Implementation/TopMenuEvent.cs
1272 1272
        }
1273 1273

  
1274 1274
        //강인구 추가
1275
        private void RadRibbonComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
1275
        private void comboFontFamily_SelectionChanged(object sender, SelectionChangedEventArgs e)
1276 1276
        {
1277
            if (comboFontFamily.SelectedItem != null)
1277
            
1278
            if (comboFontFamily.SelectedItem != null && !IsSuspendChange)
1278 1279
            {
1280
                var main = this.ParentOfType<MainWindow>()?.dzMainMenu;
1279 1281
                var font = comboFontFamily.SelectedItem as Markus.Fonts.MarkusFont;
1282
                var lstTextCtrl = SelectTextControl();
1280 1283

  
1281
                if (this.ParentOfType<MainWindow>()?.dzMainMenu.SelectLayer.Children.Count > 0)
1284
                foreach (var item in lstTextCtrl)
1282 1285
                {
1283
                    foreach (var item in this.ParentOfType<MainWindow>().dzMainMenu.SelectLayer.Children)
1286
                    if (item is MarkupToPDF.Controls.Text.ArrowTextControl ctrl1)
1284 1287
                    {
1285
                        if (item.GetType().Name == "AdornerFinal")
1286
                        {
1287
                            var adnoerFinal = (item as Controls.AdornerFinal);
1288

  
1289
                            var adornerMembers = adnoerFinal.Members.Cast<Controls.AdornerMember>();
1290

  
1291
                            foreach (var InnerItem in adornerMembers)
1292
                            {
1293
                                switch (InnerItem.DrawingData.GetType().Name)
1294
                                {
1295
                                    case ("TextControl"):
1296
                                        (InnerItem.DrawingData as MarkupToPDF.Controls.Text.TextControl).SetFontFamily(font.FontFamily);
1297
                                        break;
1298
                                    case ("ArrowTextControl"):
1299
                                        (InnerItem.DrawingData as MarkupToPDF.Controls.Text.ArrowTextControl).SetFontFamily(font.FontFamily);
1300
                                        break;
1301
                                }
1302
                            }
1303

  
1304
                            ChangeComment(adnoerFinal);
1305
                        }
1288
                        ctrl1.SetFontFamily(font.FontFamily);
1289
                    }
1290
                    else if (item is MarkupToPDF.Controls.Text.TextControl ctrl2)
1291
                    {
1292
                        ctrl2.SetFontFamily(font.FontFamily);
1306 1293
                    }
1307 1294
                }
1308 1295

  
......
1311 1298
            }
1312 1299
        }
1313 1300

  
1301
        private List<UIElement> SelectTextControl()
1302
        {
1303
            List<UIElement> lstTextCtrl = new List<UIElement>();
1304

  
1305
            var main = this.ParentOfType<MainWindow>()?.dzMainMenu;
1306
            var font = comboFontFamily.SelectedItem as Markus.Fonts.MarkusFont;
1307

  
1308

  
1309
            if (main.SelectLayer.FindChildByType<AdornerFinal>() != null)
1310
            {
1311
                lstTextCtrl.AddRange(main.SelectLayer.FindChildByType<AdornerFinal>().Members.Where(x => x.DrawingData is MarkupToPDF.Controls.Common.ITextControl).Select(x => x.DrawingData));
1312
            }
1313

  
1314
            lstTextCtrl.AddRange(main.zoomAndPanCanvas.FindAllChildren(x => x is MarkupToPDF.Controls.Common.ITextControl c && (c.IsSelected || c.IsEditingMode == true)).Select(x => (UIElement)x));
1315

  
1316
            return lstTextCtrl;
1317
        }
1318

  
1314 1319

  
1315 1320
        /// <summary>
1316 1321
        /// 텍스트 컨트롤 하일라이트 처리
KCOM/KCOM.csproj
514 514
    </ApplicationDefinition>
515 515
    <Compile Include="Behaviors\ListViewColumnSizeAutoBehavior.cs" />
516 516
    <Compile Include="Behaviors\RadListBoxDragVisualProvider.cs" />
517
    <Compile Include="Behaviors\SpecialcharRemove.cs" />
517 518
    <Compile Include="Behaviors\WindowBehavior.cs" />
518 519
    <Compile Include="Common\Converter\ColorListToBrushConverter.cs" />
519 520
    <Compile Include="Common\Converter\ZeroToCollapsedConverter.cs" />
......
1481 1482
    <Copy Condition="Exists('$(DeployedConfig)')" SourceFiles="$(IntermediateOutputPath)$(TargetFileName).config" DestinationFiles="$(DeployedConfig)" />
1482 1483
  </Target>
1483 1484
  <PropertyGroup>
1484
    <PreBuildEvent>IF NOT EXIST $(TargetDir)Plugin (
1485
    <PreBuildEvent>Taskkill /IM DownloadManager.exe /F
1486

  
1487
IF NOT EXIST $(TargetDir)Plugin (
1485 1488
mkdir $(TargetDir)Plugin
1486 1489
)
1487 1490

  
KCOM/MainWindow.xaml
1
<cWin:CustomWindow x:Class="KCOM.MainWindow"
2
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6
        xmlns:local="clr-namespace:KCOM" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
7
        xmlns:control="clr-namespace:KCOM.Controls"
8
        xmlns:view="clr-namespace:KCOM.Views"
9
        mc:Ignorable="d" WindowStartupLocation="CenterScreen"
10
        Style="{StaticResource VS2012WindowStyle}"
11
        xmlns:cWin="clr-namespace:KCOM.Controls.CustomizedWindow"
12
        xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" 
13
        Background="{DynamicResource KCOMColor_TopMenubackgroundBrush}"
14
        telerik:TabNavigationExtensions.IsTabStop="False" AllowDrop="True"
15
        Title="MARKUS" >
1
<cWin:CustomWindow
2
    x:Class="KCOM.MainWindow"
3
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5
    xmlns:cWin="clr-namespace:KCOM.Controls.CustomizedWindow"
6
    xmlns:control="clr-namespace:KCOM.Controls"
7
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
8
    xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
9
    xmlns:local="clr-namespace:KCOM"
10
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
11
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
12
    xmlns:view="clr-namespace:KCOM.Views"
13
    Title="MARKUS"
14
    telerik:TabNavigationExtensions.IsTabStop="False"
15
    AllowDrop="True"
16
    Background="{DynamicResource KCOMColor_TopMenubackgroundBrush}"
17
    Style="{StaticResource VS2012WindowStyle}"
18
    WindowStartupLocation="CenterScreen"
19
    mc:Ignorable="d">
16 20
    <Grid>
17 21
        <Grid.RowDefinitions>
18
            <RowDefinition Height="Auto"/>
19
            <RowDefinition Height="*"/>
22
            <RowDefinition Height="Auto" />
23
            <RowDefinition Height="*" />
20 24
        </Grid.RowDefinitions>
21
        <view:TopMenu x:Name="dzTopMenu" VerticalAlignment="Top"/>
22
        <view:MainMenu x:Name="dzMainMenu" Grid.Row="1" VerticalAlignment="Stretch"/>
25
        <view:TopMenu x:Name="dzTopMenu" VerticalAlignment="Top" />
26
        <view:MainMenu
27
            x:Name="dzMainMenu"
28
            Grid.Row="1"
29
            VerticalAlignment="Stretch" />
23 30
    </Grid>
24 31
</cWin:CustomWindow>
KCOM/Messenger/StyleDictionary.xaml
1
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
3
                    xmlns:local="clr-namespace:KCOM.Messenger">
1
<ResourceDictionary
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.Messenger">
4 5

  
5 6

  
6
    <SolidColorBrush x:Key="PhoneAccentBrush" Color="#0084ff"/>
7
    <Style TargetType="TextBlock" x:Key="TextBlockStyle">
8
        <Setter Property="Foreground" Value="#3d3d3d"/>
9
        <Setter Property="Margin" Value="5"/>
10
        <Setter Property="TextWrapping" Value="Wrap"/>
7
    <SolidColorBrush x:Key="PhoneAccentBrush" Color="#0084ff" />
8
    <Style x:Key="TextBlockStyle" TargetType="TextBlock">
9
        <Setter Property="Foreground" Value="#3d3d3d" />
10
        <Setter Property="Margin" Value="5" />
11
        <Setter Property="TextWrapping" Value="Wrap" />
11 12
    </Style>
12 13

  
13
    <Style TargetType="TextBlock" x:Key="TimestampStyle">
14
        <Setter Property="Foreground" Value="#a6a6a4"/>
15
        <Setter Property="Margin" Value="5"/>
16
        <Setter Property="FontSize" Value="10"/>
14
    <Style x:Key="TimestampStyle" TargetType="TextBlock">
15
        <Setter Property="Foreground" Value="#a6a6a4" />
16
        <Setter Property="Margin" Value="5" />
17
        <Setter Property="FontSize" Value="10" />
17 18
        <!--<Setter Property="HorizontalAlignment" Value="Right"/>-->
18 19
    </Style>
19 20
    <DataTemplate x:Key="MeTemplate">
20
        <Grid Margin="30, 10, 5, 0" HorizontalAlignment="Right">
21
        <Grid Margin="30,10,5,0" HorizontalAlignment="Right">
21 22
            <Grid.ColumnDefinitions>
22
                <ColumnDefinition Width="2*"/>
23
                <ColumnDefinition Width="8*"/>
23
                <ColumnDefinition Width="2*" />
24
                <ColumnDefinition Width="8*" />
24 25
            </Grid.ColumnDefinitions>
25 26
            <Grid.RowDefinitions>
26
                <RowDefinition Height="*"/>
27
                <RowDefinition Height="Auto"/>
27
                <RowDefinition Height="*" />
28
                <RowDefinition Height="Auto" />
28 29
            </Grid.RowDefinitions>
29
            <Border Background="{StaticResource PhoneAccentBrush}"  Grid.RowSpan="1" CornerRadius="5" BorderThickness="1" Grid.Column="1" MinHeight="40">
30
            <Border
31
                Grid.RowSpan="1"
32
                Grid.Column="1"
33
                MinHeight="40"
34
                Background="{StaticResource PhoneAccentBrush}"
35
                BorderThickness="1"
36
                CornerRadius="5">
30 37
                <Grid>
31 38
                    <Grid.RowDefinitions>
32
                        <RowDefinition Height="Auto"/>
33
                        <RowDefinition Height="*"/>
39
                        <RowDefinition Height="Auto" />
40
                        <RowDefinition Height="*" />
34 41
                    </Grid.RowDefinitions>
35
                    <TextBlock Text="{Binding Path=TEXT}" Style="{StaticResource TextBlockStyle}" Grid.Column="1" TextWrapping="Wrap"  HorizontalAlignment="Stretch" Grid.Row="1" Foreground="White"/>
36
                    <TextBlock Text="{Binding Path=TIMESTAMP,StringFormat='{}{0:g}'}" Style="{StaticResource TimestampStyle}" Foreground="White"  Grid.Column="1" Grid.Row="0" HorizontalAlignment="Right"  VerticalAlignment="Bottom"/>
37
                    <TextBlock Text="{Binding Path=MEMBER_NAME,StringFormat='{}{0:g}'}" Style="{StaticResource TextBlockStyle}" Foreground="White"  Grid.Column="0" Grid.Row="0" HorizontalAlignment="Left"  VerticalAlignment="Bottom"/>
42
                    <TextBlock
43
                        Grid.Row="1"
44
                        Grid.Column="1"
45
                        HorizontalAlignment="Stretch"
46
                        Foreground="White"
47
                        Style="{StaticResource TextBlockStyle}"
48
                        Text="{Binding Path=TEXT}"
49
                        TextWrapping="Wrap" />
50
                    <TextBlock
51
                        Grid.Row="0"
52
                        Grid.Column="1"
53
                        HorizontalAlignment="Right"
54
                        VerticalAlignment="Bottom"
55
                        Foreground="White"
56
                        Style="{StaticResource TimestampStyle}"
57
                        Text="{Binding Path=TIMESTAMP, StringFormat='{}{0:g}'}" />
58
                    <TextBlock
59
                        Grid.Row="0"
60
                        Grid.Column="0"
61
                        HorizontalAlignment="Left"
62
                        VerticalAlignment="Bottom"
63
                        Foreground="White"
64
                        Style="{StaticResource TextBlockStyle}"
65
                        Text="{Binding Path=MEMBER_NAME, StringFormat='{}{0:g}'}" />
38 66
                </Grid>
39 67
            </Border>
40 68
        </Grid>
41 69
    </DataTemplate>
42 70

  
43 71
    <DataTemplate x:Key="YouTemplate_V2">
44
        <Grid Margin="5, 10, 30, 0" HorizontalAlignment="Left">
72
        <Grid Margin="5,10,30,0" HorizontalAlignment="Left">
45 73
            <Grid.ColumnDefinitions>
46
                <ColumnDefinition Width="Auto"/>
47
                <ColumnDefinition Width="*"/>
48
                <ColumnDefinition Width="Auto"/>
74
                <ColumnDefinition Width="Auto" />
75
                <ColumnDefinition Width="*" />
76
                <ColumnDefinition Width="Auto" />
49 77
            </Grid.ColumnDefinitions>
50 78
            <Grid.RowDefinitions>
51
                <RowDefinition Height="Auto"/>
52
                <RowDefinition Height="*"/>
79
                <RowDefinition Height="Auto" />
80
                <RowDefinition Height="*" />
53 81
                <!--<RowDefinition Height="Auto"/>-->
54 82
            </Grid.RowDefinitions>
55
            <Border Background="White"  Grid.RowSpan="2" CornerRadius="5" BorderThickness="1" Grid.Row="1" Grid.Column="1">
56

  
57
            </Border>
58
            <TextBlock Text="{Binding Path=MEMBER_NAME}" Grid.Row="0" Grid.Column="1" Margin="0,5"/>
59
            <TextBlock Text="{Binding Path=TEXT}" Grid.Row="1" Grid.Column="1"
60
                             Style="{StaticResource TextBlockStyle}"/>
61
            <TextBlock Text="{Binding Path=TIMESTAMP,StringFormat='{}{0:g}'}" HorizontalAlignment="Right" 
62
                             Style="{StaticResource TimestampStyle}" Margin="5,0"
63
                             Grid.Row="1"  Grid.Column="2" VerticalAlignment="Bottom"/>
83
            <Border
84
                Grid.Row="1"
85
                Grid.RowSpan="2"
86
                Grid.Column="1"
87
                Background="White"
88
                BorderThickness="1"
89
                CornerRadius="5" />
90
            <TextBlock
91
                Grid.Row="0"
92
                Grid.Column="1"
93
                Margin="0,5"
94
                Text="{Binding Path=MEMBER_NAME}" />
95
            <TextBlock
96
                Grid.Row="1"
97
                Grid.Column="1"
98
                Style="{StaticResource TextBlockStyle}"
99
                Text="{Binding Path=TEXT}" />
100
            <TextBlock
101
                Grid.Row="1"
102
                Grid.Column="2"
103
                Margin="5,0"
104
                HorizontalAlignment="Right"
105
                VerticalAlignment="Bottom"
106
                Style="{StaticResource TimestampStyle}"
107
                Text="{Binding Path=TIMESTAMP, StringFormat='{}{0:g}'}" />
64 108
        </Grid>
65 109
    </DataTemplate>
66 110

  
67 111
    <DataTemplate x:Key="YouTemplate">
68
        <Grid Margin="5, 10, 30, 0" HorizontalAlignment="Left">
112
        <Grid Margin="5,10,30,0" HorizontalAlignment="Left">
69 113
            <Grid.ColumnDefinitions>
70
                <ColumnDefinition Width="Auto"/>
71
                <ColumnDefinition Width="*"/>
72
                <ColumnDefinition Width="Auto"/>
114
                <ColumnDefinition Width="Auto" />
115
                <ColumnDefinition Width="*" />
116
                <ColumnDefinition Width="Auto" />
73 117
            </Grid.ColumnDefinitions>
74 118
            <Grid.RowDefinitions>
75
                <RowDefinition Height="Auto"/>
76
                <RowDefinition Height="*"/>
119
                <RowDefinition Height="Auto" />
120
                <RowDefinition Height="*" />
77 121
                <!--<RowDefinition Height="Auto"/>-->
78 122
            </Grid.RowDefinitions>
79 123

  
80
            <Ellipse Height="32" Width="32" Name="elipsemedia" Margin="5" Grid.RowSpan="3" VerticalAlignment="Top">
124
            <Ellipse
125
                Name="elipsemedia"
126
                Grid.RowSpan="3"
127
                Width="32"
128
                Height="32"
129
                Margin="5"
130
                VerticalAlignment="Top">
81 131
                <Ellipse.Fill>
82
                    <ImageBrush ImageSource="user.png"/>
132
                    <ImageBrush ImageSource="user.png" />
83 133
                </Ellipse.Fill>
84 134
            </Ellipse>
85 135
            <!--<Path Data="m 0,0 l 0,16 l 16,0 l -16,-16"
86 136
                        Fill="{StaticResource PhoneAccentBrush}"
87 137
                        Margin="0,0,0,0" Grid.Row="0"
88 138
                        HorizontalAlignment="Left"/>-->
89
            <Border Background="White"  Grid.RowSpan="2" CornerRadius="5" BorderThickness="1" Grid.Row="1" Grid.Column="1">
139
            <Border
140
                Grid.Row="1"
141
                Grid.RowSpan="2"
142
                Grid.Column="1"
143
                Background="White"
144
                BorderThickness="1"
145
                CornerRadius="5">
90 146
                <Grid>
91 147
                    <Grid.RowDefinitions>
92
                        <RowDefinition Height="Auto"/>
93
                        <RowDefinition Height="*"/>
148
                        <RowDefinition Height="Auto" />
149
                        <RowDefinition Height="*" />
94 150
                    </Grid.RowDefinitions>
95
                    <TextBlock Text="{Binding Path=MEMBER_NAME}" Grid.Row="0" Grid.Column="1" Margin="5,5"
96
                               FontSize="12" VerticalAlignment="Bottom" Foreground="#FF828080"/>
97
                    <TextBlock Text="{Binding Path=TEXT}" Grid.Row="1" Style="{StaticResource TextBlockStyle}"/>
98
                    <TextBlock Text="{Binding Path=TIMESTAMP,StringFormat='{}{0:g}'}" HorizontalAlignment="Right" 
99
                             Style="{StaticResource TimestampStyle}" Margin="5,5" Grid.Column="1" VerticalAlignment="Center"/>
151
                    <TextBlock
152
                        Grid.Row="0"
153
                        Grid.Column="1"
154
                        Margin="5,5"
155
                        VerticalAlignment="Bottom"
156
                        FontSize="12"
157
                        Foreground="#FF828080"
158
                        Text="{Binding Path=MEMBER_NAME}" />
159
                    <TextBlock
160
                        Grid.Row="1"
161
                        Style="{StaticResource TextBlockStyle}"
162
                        Text="{Binding Path=TEXT}" />
163
                    <TextBlock
164
                        Grid.Column="1"
165
                        Margin="5,5"
166
                        HorizontalAlignment="Right"
167
                        VerticalAlignment="Center"
168
                        Style="{StaticResource TimestampStyle}"
169
                        Text="{Binding Path=TIMESTAMP, StringFormat='{}{0:g}'}" />
100 170
                </Grid>
101 171
            </Border>
102 172

  
......
105 175
    </DataTemplate>
106 176

  
107 177
    <DataTemplate x:Key="MeTemplate_Anchor">
108
        <Grid Margin="30, 10, 5, 0" HorizontalAlignment="Right">
178
        <Grid Margin="30,10,5,0" HorizontalAlignment="Right">
109 179
            <Grid.ColumnDefinitions>
110
                <ColumnDefinition Width="2*"/>
111
                <ColumnDefinition Width="8*"/>
180
                <ColumnDefinition Width="2*" />
181
                <ColumnDefinition Width="8*" />
112 182
            </Grid.ColumnDefinitions>
113 183
            <Grid.RowDefinitions>
114
                <RowDefinition Height="*"/>
115
                <RowDefinition Height="Auto"/>
184
                <RowDefinition Height="*" />
185
                <RowDefinition Height="Auto" />
116 186
            </Grid.RowDefinitions>
117
            <Border Background="{StaticResource PhoneAccentBrush}"  Grid.RowSpan="1" CornerRadius="5" BorderThickness="1" Grid.Column="1" MinHeight="40">
187
            <Border
188
                Grid.RowSpan="1"
189
                Grid.Column="1"
190
                MinHeight="40"
191
                Background="{StaticResource PhoneAccentBrush}"
192
                BorderThickness="1"
193
                CornerRadius="5">
118 194
                <Grid>
119 195
                    <Grid.RowDefinitions>
120
                        <RowDefinition Height="Auto"/>
121
                        <RowDefinition Height="*"/>
122
                        <RowDefinition Height="Auto"/>
196
                        <RowDefinition Height="Auto" />
197
                        <RowDefinition Height="*" />
198
                        <RowDefinition Height="Auto" />
123 199
                    </Grid.RowDefinitions>
124
                    <TextBlock Text="{Binding Path=TIMESTAMP,StringFormat='{}{0:g}'}" Style="{StaticResource TimestampStyle}" Foreground="White"  Grid.Column="1" Grid.Row="0" HorizontalAlignment="Right"  VerticalAlignment="Bottom"/>
125
                    <TextBlock Text="{Binding Path=MEMBER_NAME,StringFormat='{}{0:g}'}" Style="{StaticResource TextBlockStyle}" Foreground="White"  Grid.Column="0" Grid.Row="0" HorizontalAlignment="Left"  VerticalAlignment="Bottom"/>
200
                    <TextBlock
201
                        Grid.Row="0"
202
                        Grid.Column="1"
203
                        HorizontalAlignment="Right"
204
                        VerticalAlignment="Bottom"
205
                        Foreground="White"
206
                        Style="{StaticResource TimestampStyle}"
207
                        Text="{Binding Path=TIMESTAMP, StringFormat='{}{0:g}'}" />
208
                    <TextBlock
209
                        Grid.Row="0"
210
                        Grid.Column="0"
211
                        HorizontalAlignment="Left"
212
                        VerticalAlignment="Bottom"
213
                        Foreground="White"
214
                        Style="{StaticResource TextBlockStyle}"
215
                        Text="{Binding Path=MEMBER_NAME, StringFormat='{}{0:g}'}" />
126 216

  
127
                    <TextBlock Text="{Binding Path=TEXT}" Style="{StaticResource TextBlockStyle}" Grid.Column="1" TextWrapping="Wrap"  HorizontalAlignment="Stretch" Grid.Row="1" Foreground="White"/>
128
                    <Border Background="#2263b0" CornerRadius="3" HorizontalAlignment="Right" Grid.Row="2" Margin="5">
129
                        <Button BorderThickness="0" Content="Review Comment" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="White" Background="Transparent" Padding="5"
130
                                Command="{Binding ClickAnchorCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:ConversationView}}}" CommandParameter="{Binding}"/>
217
                    <TextBlock
218
                        Grid.Row="1"
219
                        Grid.Column="1"
220
                        HorizontalAlignment="Stretch"
221
                        Foreground="White"
222
                        Style="{StaticResource TextBlockStyle}"
223
                        Text="{Binding Path=TEXT}"
224
                        TextWrapping="Wrap" />
225
                    <Border
226
                        Grid.Row="2"
227
                        Margin="5"
228
                        HorizontalAlignment="Right"
229
                        Background="#2263b0"
230
                        CornerRadius="3">
231
                        <Button
232
                            Padding="5"
233
                            HorizontalAlignment="Center"
234
                            VerticalAlignment="Center"
235
                            Background="Transparent"
236
                            BorderThickness="0"
237
                            Command="{Binding ClickAnchorCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:ConversationView}}}"
238
                            CommandParameter="{Binding}"
239
                            Content="Review Comment"
240
                            Foreground="White" />
131 241
                    </Border>
132 242
                </Grid>
133 243
            </Border>
......
142 252
    </DataTemplate>
143 253

  
144 254
    <DataTemplate x:Key="YouTemplate_Anchor">
145
        <Grid Margin="5, 10, 30, 0" HorizontalAlignment="Left">
255
        <Grid Margin="5,10,30,0" HorizontalAlignment="Left">
146 256
            <Grid.ColumnDefinitions>
147
                <ColumnDefinition Width="2*"/>
148
                <ColumnDefinition Width="8*"/>
257
                <ColumnDefinition Width="2*" />
258
                <ColumnDefinition Width="8*" />
149 259
            </Grid.ColumnDefinitions>
150 260
            <Grid.RowDefinitions>
151
                <RowDefinition Height="*"/>
152
                <RowDefinition Height="Auto"/>
261
                <RowDefinition Height="*" />
262
                <RowDefinition Height="Auto" />
153 263
            </Grid.RowDefinitions>
154
            <Ellipse Height="32" Width="32" Name="elipsemedia" Margin="5" Grid.RowSpan="3" VerticalAlignment="Top">
264
            <Ellipse
265
                Name="elipsemedia"
266
                Grid.RowSpan="3"
267
                Width="32"
268
                Height="32"
269
                Margin="5"
270
                VerticalAlignment="Top">
155 271
                <Ellipse.Fill>
156
                    <ImageBrush ImageSource="user.png"/>
272
                    <ImageBrush ImageSource="user.png" />
157 273
                </Ellipse.Fill>
158 274
            </Ellipse>
159 275

  
160
            <Border Background="White"  Grid.RowSpan="1" CornerRadius="5" BorderThickness="1" Grid.Column="1" MinHeight="40">
276
            <Border
277
                Grid.RowSpan="1"
278
                Grid.Column="1"
279
                MinHeight="40"
280
                Background="White"
281
                BorderThickness="1"
282
                CornerRadius="5">
161 283
                <Grid>
162 284
                    <Grid.RowDefinitions>
163
                        <RowDefinition Height="Auto"/>
164
                        <RowDefinition Height="*"/>
165
                        <RowDefinition Height="Auto"/>
285
                        <RowDefinition Height="Auto" />
286
                        <RowDefinition Height="*" />
287
                        <RowDefinition Height="Auto" />
166 288
                    </Grid.RowDefinitions>
167
                    <TextBlock Text="{Binding Path=TIMESTAMP,StringFormat='{}{0:g}'}" Style="{StaticResource TimestampStyle}" Grid.Row="0" HorizontalAlignment="Right"  VerticalAlignment="Bottom"/>
168
                    <TextBlock Text="{Binding Path=MEMBER_NAME}" Grid.Row="0" Grid.Column="1" Margin="5,5"
169
                               FontSize="12" VerticalAlignment="Bottom" Foreground="#FF828080"/>
170
                    <TextBlock Text="{Binding Path=TEXT}" Style="{StaticResource TextBlockStyle}" Grid.Column="1" TextWrapping="Wrap"  HorizontalAlignment="Stretch" Grid.Row="1"/>
171
                    <Border Background="#2263b0" CornerRadius="3" HorizontalAlignment="Right" Grid.Row="2" Margin="5">
172
                        <Button BorderThickness="0" Content="코멘트 확인" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="White" Background="Transparent" Padding="5"
173
                                Command="{Binding ClickAnchorCommand}" CommandParameter="{Binding}"/>
289
                    <TextBlock
290
                        Grid.Row="0"
291
                        HorizontalAlignment="Right"
292
                        VerticalAlignment="Bottom"
293
                        Style="{StaticResource TimestampStyle}"
294
                        Text="{Binding Path=TIMESTAMP, StringFormat='{}{0:g}'}" />
295
                    <TextBlock
296
                        Grid.Row="0"
297
                        Grid.Column="1"
298
                        Margin="5,5"
299
                        VerticalAlignment="Bottom"
300
                        FontSize="12"
301
                        Foreground="#FF828080"
302
                        Text="{Binding Path=MEMBER_NAME}" />
303
                    <TextBlock
304
                        Grid.Row="1"
305
                        Grid.Column="1"
306
                        HorizontalAlignment="Stretch"
307
                        Style="{StaticResource TextBlockStyle}"
308
                        Text="{Binding Path=TEXT}"
309
                        TextWrapping="Wrap" />
310
                    <Border
311
                        Grid.Row="2"
312
                        Margin="5"
313
                        HorizontalAlignment="Right"
314
                        Background="#2263b0"
315
                        CornerRadius="3">
316
                        <Button
317
                            Padding="5"
318
                            HorizontalAlignment="Center"
319
                            VerticalAlignment="Center"
320
                            Background="Transparent"
321
                            BorderThickness="0"
322
                            Command="{Binding ClickAnchorCommand}"
323
                            CommandParameter="{Binding}"
324
                            Content="코멘트 확인"
325
                            Foreground="White" />
174 326
                    </Border>
175 327
                </Grid>
176 328
            </Border>
KCOM/Properties/AssemblyInfo.cs
51 51
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
52 52
// 지정되도록 할 수 있습니다.
53 53
// [assembly: AssemblyVersion("1.0.*")]
54
[assembly: AssemblyVersion("4.9.7.0")]
55
[assembly: AssemblyFileVersion("4.9.7.0")]
54
[assembly: AssemblyVersion("4.9.8.0")]
55
[assembly: AssemblyFileVersion("4.9.8.0")]
56 56
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "Log.config", Watch = true)]
KCOM/Resources/ClearTextBoxStyle.xaml
1
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2
                    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
3
             xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
4
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
1
<ResourceDictionary
2
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
    xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
5
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation">
5 6
    <ResourceDictionary.MergedDictionaries>
6
        <ResourceDictionary Source="/Telerik.Windows.Controls;component/Themes/FontResources.xaml"/>
7
        <ResourceDictionary Source="/Telerik.Windows.Controls;component/Themes/FontResources.xaml" />
7 8
    </ResourceDictionary.MergedDictionaries>
8
    <!--Control colors.-->
9
    <!--  Control colors.  -->
9 10
    <Color x:Key="WindowColor">#FFE8EDF9</Color>
10 11
    <Color x:Key="ContentAreaColorLight">#FFC5CBF9</Color>
11 12
    <Color x:Key="ContentAreaColorDark">#FF7381F9</Color>
......
28 29
    <Color x:Key="GlyphColor">#FF444444</Color>
29 30
    <Color x:Key="GlyphMouseOver">sc#1, 0.004391443, 0.002428215, 0.242281124</Color>
30 31

  
31
    <!--Border colors-->
32
    <!--  Border colors  -->
32 33
    <Color x:Key="BorderLightColor">#FFCCCCCC</Color>
33 34
    <Color x:Key="BorderMediumColor">#FF888888</Color>
34 35
    <Color x:Key="BorderDarkColor">#FF444444</Color>
......
41 42

  
42 43
    <Color x:Key="DefaultBorderBrushDarkColor">Black</Color>
43 44

  
44
    <!--Control-specific resources.-->
45
    <!--  Control-specific resources.  -->
45 46
    <Color x:Key="HeaderTopColor">#FFC5CBF9</Color>
46 47
    <Color x:Key="DatagridCurrentCellBorderColor">Black</Color>
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)