翼度科技»论坛 编程开发 .net 查看内容

WPF自定义控件库之Window窗口

6

主题

6

帖子

18

积分

新手上路

Rank: 1

积分
18
在WPF开发中,默认控件的样式常常无法满足实际的应用需求,我们通常都会采用引入第三方控件库的方式来美化UI,使得应用软件的设计风格更加统一。常用的WPF的UI控件库主要有以下几种,如:Modern UI for WPFMaterialDesignInXamlToolkit,PanuonUI,Newbeecoder.UI,WPF UI ,AduSkinPanuon.UI.SilverHandyControlMahApps.Metro,Kino.Toolkit.Wpf,Xceed Extended WPF Toolkit™,Kino.Toolkit.Wpf,PP.Wpf,Adonis-ui,CC.WPFTools,CookPopularControl ,PropertyTools,RRQMSkin,Layui-WPF,Arthas-WPFUI,fruit-vent-design,Fluent.Ribbon,DMSkin WPF,EASkins_WPF,Rubyer-WPF,WPFDevelopers.Minimal ,WPFDevelopers,DevExpress WPF UI Library,ReactiveUI,Telerik UI for WPF等等,面对如此之多的WPF 第三方UI控件库,可谓各有特色,不一而同,对于具有选择综合症的开发人员来说,真的很难抉择。在实际工作中,软件经过统一的UI设计以后,和具体的业务紧密相连,往往这些通用的UI框架很难百分之百的契合,这时候,就需要我们自己去实现自定义控件【Custom Control】来解决。本文以自定义窗口为例,简述如何通过自定义控件来扩展功能和样式,仅供学习分享使用,如有不足之处,还请指正。
 
自定义控件

 
自定义控件Custom Control,通过集成现有控件(如:Button , Window等)进行扩展,或者继承Control基类两种方式,和用户控件【User Control不太相同】,具体差异如下所示:

  • 用户控件UserControl

    • 注重复合控件的使用,也就是多个现有控件组成一个可复用的控件组
    • XAML和后台代码组成,绑定紧密
    • 不支持模板重写
    • 继承自UserControl

  • 自定义控件CustomControl

    • 完全自己实现一个控件,如继承现有控件进行功能扩展,并添加新功能
    • 后台代码和Generic.xaml进行组合
    • 在使用时支持模板重写
    • 继承自Control

本文所讲解的侧重点为自定义控件,所以用户控件不再过多阐述。
 
WPF实现自定义控件步骤

 
1. 创建控件库

 
首先在解决方案中,创建一个WPF类库项目【SmallSixUI.Templates】,作为控件库,后续所有自定义控件,都可以在此项目中开发。并创建Controls,Styles,Themes,Utils等文件夹,分别存放控件类,样式,主题,帮助类等内容,作为控件库的基础结构,如下所示:

 
2. 创建自定义控件

 
在Controls目录中,创建自定义窗口AiWindow,继承自Window类,即此类具有窗口的一切功能,并具有扩展出来的自定义功能。在此自定义窗口中,我们可以自定义窗口标题的字体颜色HeaderForeground,背景色HeaderBackground,是否显示标题IsShowHeader,标题高度HeaderHeight,窗口动画类型Type等内容,具体如下所示:
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Automation.Text;
  8. using System.Windows;
  9. using SmallSixUI.Templates.Utils;
  10. using System.Windows.Controls;
  11. using System.Windows.Media;
  12. using System.Windows.Shell;
  13. namespace SmallSixUI.Templates.Controls
  14. {
  15.     [TemplatePart(Name = "PART_CloseWindowButton", Type = typeof(Button))]
  16.     [TemplatePart(Name = "PART_MaxWindowButton", Type = typeof(Button))]
  17.     [TemplatePart(Name = "PART_MinWindowButton", Type = typeof(Button))]
  18.     public class AiWindow : Window
  19.     {
  20.         /// <summary>
  21.         /// 关闭窗体
  22.         /// </summary>
  23.         private Button PART_CloseWindowButton = null;
  24.         /// <summary>
  25.         /// 窗体缩放
  26.         /// </summary>
  27.         private Button PART_MaxWindowButton = null;
  28.         /// <summary>
  29.         /// 最小化窗体
  30.         /// </summary>
  31.         private Button PART_MinWindowButton = null;
  32.         /// <summary>
  33.         /// 设置重写默认样式
  34.         /// </summary>
  35.         static AiWindow()
  36.         {
  37.             StyleProperty.OverrideMetadata(typeof(AiWindow), new FrameworkPropertyMetadata(AiResourceHelper.GetStyle(nameof(AiWindow) + "Style")));
  38.         }
  39.         /// <summary>
  40.         /// 顶部内容
  41.         /// </summary>
  42.         [Bindable(true)]
  43.         public object HeaderContent
  44.         {
  45.             get { return (object)GetValue(HeaderContentProperty); }
  46.             set { SetValue(HeaderContentProperty, value); }
  47.         }
  48.         // Using a DependencyProperty as the backing store for HeaderContent.  This enables animation, styling, binding, etc...
  49.         public static readonly DependencyProperty HeaderContentProperty =
  50.             DependencyProperty.Register("HeaderContent", typeof(object), typeof(AiWindow));
  51.         /// <summary>
  52.         /// 头部标题栏文字颜色
  53.         /// </summary>
  54.         [Bindable(true)]
  55.         public Brush HeaderForeground
  56.         {
  57.             get { return (Brush)GetValue(HeaderForegroundProperty); }
  58.             set { SetValue(HeaderForegroundProperty, value); }
  59.         }
  60.         // Using a DependencyProperty as the backing store for HeaderForeground.  This enables animation, styling, binding, etc...
  61.         public static readonly DependencyProperty HeaderForegroundProperty =
  62.             DependencyProperty.Register("HeaderForeground", typeof(Brush), typeof(AiWindow), new PropertyMetadata(Brushes.White));
  63.         /// <summary>
  64.         /// 头部标题栏背景色
  65.         /// </summary>
  66.         [Bindable(true)]
  67.         public Brush HeaderBackground
  68.         {
  69.             get { return (Brush)GetValue(HeaderBackgroundProperty); }
  70.             set { SetValue(HeaderBackgroundProperty, value); }
  71.         }
  72.         // Using a DependencyProperty as the backing store for MyProperty.  This enables animation, styling, binding, etc...
  73.         public static readonly DependencyProperty HeaderBackgroundProperty =
  74.             DependencyProperty.Register("HeaderBackground", typeof(Brush), typeof(AiWindow));
  75.         /// <summary>
  76.         /// 是否显示头部标题栏
  77.         /// </summary>
  78.         [Bindable(true)]
  79.         public bool IsShowHeader
  80.         {
  81.             get { return (bool)GetValue(IsShowHeaderProperty); }
  82.             set { SetValue(IsShowHeaderProperty, value); }
  83.         }
  84.         // Using a DependencyProperty as the backing store for IsShowHeader.  This enables animation, styling, binding, etc...
  85.         public static readonly DependencyProperty IsShowHeaderProperty =
  86.             DependencyProperty.Register("IsShowHeader", typeof(bool), typeof(AiWindow), new PropertyMetadata(false));
  87.         /// <summary>
  88.         /// 动画类型
  89.         /// </summary>
  90.         [Bindable(true)]
  91.         public AnimationType Type
  92.         {
  93.             get { return (AnimationType)GetValue(TypeProperty); }
  94.             set { SetValue(TypeProperty, value); }
  95.         }
  96.         // Using a DependencyProperty as the backing store for Type.  This enables animation, styling, binding, etc...
  97.         public static readonly DependencyProperty TypeProperty =
  98.             DependencyProperty.Register("Type", typeof(AnimationType), typeof(AiWindow), new PropertyMetadata(AnimationType.Default));
  99.         /// <summary>
  100.         /// 头部高度
  101.         /// </summary>
  102.         public int HeaderHeight
  103.         {
  104.             get { return (int)GetValue(HeaderHeightProperty); }
  105.             set { SetValue(HeaderHeightProperty, value); }
  106.         }
  107.         // Using a DependencyProperty as the backing store for HeaderHeight.  This enables animation, styling, binding, etc...
  108.         public static readonly DependencyProperty HeaderHeightProperty =
  109.             DependencyProperty.Register("HeaderHeight", typeof(int), typeof(AiWindow), new PropertyMetadata(50));
  110.         public override void OnApplyTemplate()
  111.         {
  112.             base.OnApplyTemplate();
  113.             PART_CloseWindowButton = GetTemplateChild("PART_CloseWindowButton") as Button;
  114.             PART_MaxWindowButton = GetTemplateChild("PART_MaxWindowButton") as Button;
  115.             PART_MinWindowButton = GetTemplateChild("PART_MinWindowButton") as Button;
  116.             if (PART_MaxWindowButton != null && PART_MinWindowButton != null && PART_CloseWindowButton != null)
  117.             {
  118. <Ai:AiWindow x:
  119.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  120.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  121.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  122.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  123.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  124.         xmlns:local="clr-namespace:SmallSixUI.App"
  125.         mc:Ignorable="d"
  126.         IsShowHeader="True"
  127.         HeaderBackground="#446180"
  128.         HeaderHeight="80"
  129.         Icon="logo.png"
  130.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  131.     <Grid>
  132.         
  133.     </Grid>
  134. </Ai:AiWindow>PART_MaxWindowButton.Click -= PART_MaxWindowButton_Click;
  135. <Ai:AiWindow x:
  136.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  137.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  138.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  139.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  140.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  141.         xmlns:local="clr-namespace:SmallSixUI.App"
  142.         mc:Ignorable="d"
  143.         IsShowHeader="True"
  144.         HeaderBackground="#446180"
  145.         HeaderHeight="80"
  146.         Icon="logo.png"
  147.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  148.     <Grid>
  149.         
  150.     </Grid>
  151. </Ai:AiWindow>PART_MinWindowButton.Click -= PART_MinWindowButton_Click;
  152. <Ai:AiWindow x:
  153.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  154.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  155.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  156.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  157.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  158.         xmlns:local="clr-namespace:SmallSixUI.App"
  159.         mc:Ignorable="d"
  160.         IsShowHeader="True"
  161.         HeaderBackground="#446180"
  162.         HeaderHeight="80"
  163.         Icon="logo.png"
  164.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  165.     <Grid>
  166.         
  167.     </Grid>
  168. </Ai:AiWindow>PART_CloseWindowButton.Click -= PART_CloseWindowButton_Click;
  169. <Ai:AiWindow x:
  170.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  171.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  172.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  173.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  174.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  175.         xmlns:local="clr-namespace:SmallSixUI.App"
  176.         mc:Ignorable="d"
  177.         IsShowHeader="True"
  178.         HeaderBackground="#446180"
  179.         HeaderHeight="80"
  180.         Icon="logo.png"
  181.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  182.     <Grid>
  183.         
  184.     </Grid>
  185. </Ai:AiWindow>PART_MaxWindowButton.Click += PART_MaxWindowButton_Click;
  186. <Ai:AiWindow x:
  187.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  188.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  189.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  190.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  191.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  192.         xmlns:local="clr-namespace:SmallSixUI.App"
  193.         mc:Ignorable="d"
  194.         IsShowHeader="True"
  195.         HeaderBackground="#446180"
  196.         HeaderHeight="80"
  197.         Icon="logo.png"
  198.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  199.     <Grid>
  200.         
  201.     </Grid>
  202. </Ai:AiWindow>PART_MinWindowButton.Click += PART_MinWindowButton_Click;
  203. <Ai:AiWindow x:
  204.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  205.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  206.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  207.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  208.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  209.         xmlns:local="clr-namespace:SmallSixUI.App"
  210.         mc:Ignorable="d"
  211.         IsShowHeader="True"
  212.         HeaderBackground="#446180"
  213.         HeaderHeight="80"
  214.         Icon="logo.png"
  215.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  216.     <Grid>
  217.         
  218.     </Grid>
  219. </Ai:AiWindow>PART_CloseWindowButton.Click += PART_CloseWindowButton_Click;
  220.             }
  221.         }
  222.         private void PART_CloseWindowButton_Click(object sender, RoutedEventArgs e)
  223.         {
  224.             Close();
  225.         }
  226.         private void PART_MinWindowButton_Click(object sender, RoutedEventArgs e)
  227.         {
  228.             WindowState = WindowState.Minimized;
  229.         }
  230.         private void PART_MaxWindowButton_Click(object sender, RoutedEventArgs e)
  231.         {
  232.             if (WindowState == WindowState.Normal)
  233.             {
  234. <Ai:AiWindow x:
  235.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  236.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  237.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  238.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  239.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  240.         xmlns:local="clr-namespace:SmallSixUI.App"
  241.         mc:Ignorable="d"
  242.         IsShowHeader="True"
  243.         HeaderBackground="#446180"
  244.         HeaderHeight="80"
  245.         Icon="logo.png"
  246.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  247.     <Grid>
  248.         
  249.     </Grid>
  250. </Ai:AiWindow>WindowState = WindowState.Maximized;
  251.             }
  252.             else
  253.             {
  254. <Ai:AiWindow x:
  255.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  256.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  257.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  258.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  259.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  260.         xmlns:local="clr-namespace:SmallSixUI.App"
  261.         mc:Ignorable="d"
  262.         IsShowHeader="True"
  263.         HeaderBackground="#446180"
  264.         HeaderHeight="80"
  265.         Icon="logo.png"
  266.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  267.     <Grid>
  268.         
  269.     </Grid>
  270. </Ai:AiWindow>WindowState = WindowState.Normal;
  271.             }
  272.         }
  273.         protected override void OnSourceInitialized(EventArgs e)
  274.         {
  275.             base.OnSourceInitialized(e);
  276.             if (SizeToContent == SizeToContent.WidthAndHeight && WindowChrome.GetWindowChrome(this) != null)
  277.             {
  278. <Ai:AiWindow x:
  279.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  280.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  281.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  282.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  283.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  284.         xmlns:local="clr-namespace:SmallSixUI.App"
  285.         mc:Ignorable="d"
  286.         IsShowHeader="True"
  287.         HeaderBackground="#446180"
  288.         HeaderHeight="80"
  289.         Icon="logo.png"
  290.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  291.     <Grid>
  292.         
  293.     </Grid>
  294. </Ai:AiWindow>InvalidateMeasure();
  295.             }
  296.         }
  297.     }
  298. }
复制代码
注意:在自定义控件中,设置窗口标题的属性要在样式中进行绑定,所以需要定义为依赖属性。在此控件中用到的通用的类,则存放在Utils中。
 
3. 创建自定义控件样式

 
在Styles文件夹中,创建样式资源文件【AiWindowStyle.xaml】,并将样式的TargentType指定为Cotrols中创建的自定义类AiWindow。然后修改控件的Template属性,为其定义新的的ControlTemplate,来改变控件的样式。如下所示:
  1. <ResourceDictionary
  2.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.     xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls">
  5.     <WindowChrome
  6.         x:Key="LayWindowChromeStyle"
  7.         CaptionHeight="56"
  8.         CornerRadius="0"
  9.         GlassFrameThickness="1"
  10.         NonClientFrameEdges="None"
  11.         ResizeBorderThickness="4"
  12.         UseAeroCaptionButtons="False" />
  13.    
  14. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  15. <Ai:AiWindow x:
  16.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  17.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  18.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  19.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  20.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  21.         xmlns:local="clr-namespace:SmallSixUI.App"
  22.         mc:Ignorable="d"
  23.         IsShowHeader="True"
  24.         HeaderBackground="#446180"
  25.         HeaderHeight="80"
  26.         Icon="logo.png"
  27.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  28.     <Grid>
  29.         
  30.     </Grid>
  31. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  32.     <ResourceDictionary.MergedDictionaries>
  33.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  34.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  35.     </ResourceDictionary.MergedDictionaries>
  36. </ResourceDictionary></Border.Style>
  37. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  38. <Ai:AiWindow x:
  39.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  40.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  41.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  42.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  43.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  44.         xmlns:local="clr-namespace:SmallSixUI.App"
  45.         mc:Ignorable="d"
  46.         IsShowHeader="True"
  47.         HeaderBackground="#446180"
  48.         HeaderHeight="80"
  49.         Icon="logo.png"
  50.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  51.     <Grid>
  52.         
  53.     </Grid>
  54. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  55.     <ResourceDictionary.MergedDictionaries>
  56.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  57.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  58.     </ResourceDictionary.MergedDictionaries>
  59. </ResourceDictionary><Ai:AiTransition  Type="{TemplateBinding Type}">
  60. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  61. <Ai:AiWindow x:
  62.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  63.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  64.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  65.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  66.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  67.         xmlns:local="clr-namespace:SmallSixUI.App"
  68.         mc:Ignorable="d"
  69.         IsShowHeader="True"
  70.         HeaderBackground="#446180"
  71.         HeaderHeight="80"
  72.         Icon="logo.png"
  73.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  74.     <Grid>
  75.         
  76.     </Grid>
  77. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  78.     <ResourceDictionary.MergedDictionaries>
  79.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  80.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  81.     </ResourceDictionary.MergedDictionaries>
  82. </ResourceDictionary>    <Grid>
  83. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  84. <Ai:AiWindow x:
  85.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  86.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  87.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  88.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  89.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  90.         xmlns:local="clr-namespace:SmallSixUI.App"
  91.         mc:Ignorable="d"
  92.         IsShowHeader="True"
  93.         HeaderBackground="#446180"
  94.         HeaderHeight="80"
  95.         Icon="logo.png"
  96.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  97.     <Grid>
  98.         
  99.     </Grid>
  100. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  101.     <ResourceDictionary.MergedDictionaries>
  102.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  103.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  104.     </ResourceDictionary.MergedDictionaries>
  105. </ResourceDictionary>        <Grid.RowDefinitions>
  106. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  107. <Ai:AiWindow x:
  108.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  109.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  110.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  111.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  112.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  113.         xmlns:local="clr-namespace:SmallSixUI.App"
  114.         mc:Ignorable="d"
  115.         IsShowHeader="True"
  116.         HeaderBackground="#446180"
  117.         HeaderHeight="80"
  118.         Icon="logo.png"
  119.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  120.     <Grid>
  121.         
  122.     </Grid>
  123. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  124.     <ResourceDictionary.MergedDictionaries>
  125.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  126.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  127.     </ResourceDictionary.MergedDictionaries>
  128. </ResourceDictionary>            <RowDefinition Height="auto" />
  129. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  130. <Ai:AiWindow x:
  131.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  132.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  133.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  134.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  135.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  136.         xmlns:local="clr-namespace:SmallSixUI.App"
  137.         mc:Ignorable="d"
  138.         IsShowHeader="True"
  139.         HeaderBackground="#446180"
  140.         HeaderHeight="80"
  141.         Icon="logo.png"
  142.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  143.     <Grid>
  144.         
  145.     </Grid>
  146. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  147.     <ResourceDictionary.MergedDictionaries>
  148.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  149.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  150.     </ResourceDictionary.MergedDictionaries>
  151. </ResourceDictionary>            <RowDefinition />
  152. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  153. <Ai:AiWindow x:
  154.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  155.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  156.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  157.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  158.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  159.         xmlns:local="clr-namespace:SmallSixUI.App"
  160.         mc:Ignorable="d"
  161.         IsShowHeader="True"
  162.         HeaderBackground="#446180"
  163.         HeaderHeight="80"
  164.         Icon="logo.png"
  165.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  166.     <Grid>
  167.         
  168.     </Grid>
  169. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  170.     <ResourceDictionary.MergedDictionaries>
  171.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  172.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  173.     </ResourceDictionary.MergedDictionaries>
  174. </ResourceDictionary>        </Grid.RowDefinitions>
  175. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  176. <Ai:AiWindow x:
  177.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  178.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  179.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  180.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  181.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  182.         xmlns:local="clr-namespace:SmallSixUI.App"
  183.         mc:Ignorable="d"
  184.         IsShowHeader="True"
  185.         HeaderBackground="#446180"
  186.         HeaderHeight="80"
  187.         Icon="logo.png"
  188.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  189.     <Grid>
  190.         
  191.     </Grid>
  192. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  193.     <ResourceDictionary.MergedDictionaries>
  194.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  195.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  196.     </ResourceDictionary.MergedDictionaries>
  197. </ResourceDictionary>        <Grid
  198. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  199. <Ai:AiWindow x:
  200.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  201.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  202.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  203.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  204.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  205.         xmlns:local="clr-namespace:SmallSixUI.App"
  206.         mc:Ignorable="d"
  207.         IsShowHeader="True"
  208.         HeaderBackground="#446180"
  209.         HeaderHeight="80"
  210.         Icon="logo.png"
  211.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  212.     <Grid>
  213.         
  214.     </Grid>
  215. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  216.     <ResourceDictionary.MergedDictionaries>
  217.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  218.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  219.     </ResourceDictionary.MergedDictionaries>
  220. </ResourceDictionary>            x:Name="PART_Header"
  221. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  222. <Ai:AiWindow x:
  223.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  224.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  225.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  226.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  227.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  228.         xmlns:local="clr-namespace:SmallSixUI.App"
  229.         mc:Ignorable="d"
  230.         IsShowHeader="True"
  231.         HeaderBackground="#446180"
  232.         HeaderHeight="80"
  233.         Icon="logo.png"
  234.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  235.     <Grid>
  236.         
  237.     </Grid>
  238. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  239.     <ResourceDictionary.MergedDictionaries>
  240.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  241.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  242.     </ResourceDictionary.MergedDictionaries>
  243. </ResourceDictionary>            Background="{TemplateBinding HeaderBackground}">
  244. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  245. <Ai:AiWindow x:
  246.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  247.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  248.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  249.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  250.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  251.         xmlns:local="clr-namespace:SmallSixUI.App"
  252.         mc:Ignorable="d"
  253.         IsShowHeader="True"
  254.         HeaderBackground="#446180"
  255.         HeaderHeight="80"
  256.         Icon="logo.png"
  257.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  258.     <Grid>
  259.         
  260.     </Grid>
  261. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  262.     <ResourceDictionary.MergedDictionaries>
  263.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  264.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  265.     </ResourceDictionary.MergedDictionaries>
  266. </ResourceDictionary>            <Grid.ColumnDefinitions>
  267. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  268. <Ai:AiWindow x:
  269.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  270.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  271.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  272.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  273.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  274.         xmlns:local="clr-namespace:SmallSixUI.App"
  275.         mc:Ignorable="d"
  276.         IsShowHeader="True"
  277.         HeaderBackground="#446180"
  278.         HeaderHeight="80"
  279.         Icon="logo.png"
  280.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  281.     <Grid>
  282.         
  283.     </Grid>
  284. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  285.     <ResourceDictionary.MergedDictionaries>
  286.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  287.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  288.     </ResourceDictionary.MergedDictionaries>
  289. </ResourceDictionary><Ai:AiWindow x:
  290.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  291.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  292.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  293.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  294.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  295.         xmlns:local="clr-namespace:SmallSixUI.App"
  296.         mc:Ignorable="d"
  297.         IsShowHeader="True"
  298.         HeaderBackground="#446180"
  299.         HeaderHeight="80"
  300.         Icon="logo.png"
  301.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  302.     <Grid>
  303.         
  304.     </Grid>
  305. </Ai:AiWindow><ColumnDefinition Width="auto" />
  306. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  307. <Ai:AiWindow x:
  308.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  309.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  310.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  311.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  312.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  313.         xmlns:local="clr-namespace:SmallSixUI.App"
  314.         mc:Ignorable="d"
  315.         IsShowHeader="True"
  316.         HeaderBackground="#446180"
  317.         HeaderHeight="80"
  318.         Icon="logo.png"
  319.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  320.     <Grid>
  321.         
  322.     </Grid>
  323. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  324.     <ResourceDictionary.MergedDictionaries>
  325.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  326.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  327.     </ResourceDictionary.MergedDictionaries>
  328. </ResourceDictionary><Ai:AiWindow x:
  329.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  330.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  331.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  332.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  333.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  334.         xmlns:local="clr-namespace:SmallSixUI.App"
  335.         mc:Ignorable="d"
  336.         IsShowHeader="True"
  337.         HeaderBackground="#446180"
  338.         HeaderHeight="80"
  339.         Icon="logo.png"
  340.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  341.     <Grid>
  342.         
  343.     </Grid>
  344. </Ai:AiWindow><ColumnDefinition Width="auto" />
  345. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  346. <Ai:AiWindow x:
  347.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  348.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  349.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  350.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  351.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  352.         xmlns:local="clr-namespace:SmallSixUI.App"
  353.         mc:Ignorable="d"
  354.         IsShowHeader="True"
  355.         HeaderBackground="#446180"
  356.         HeaderHeight="80"
  357.         Icon="logo.png"
  358.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  359.     <Grid>
  360.         
  361.     </Grid>
  362. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  363.     <ResourceDictionary.MergedDictionaries>
  364.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  365.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  366.     </ResourceDictionary.MergedDictionaries>
  367. </ResourceDictionary><Ai:AiWindow x:
  368.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  369.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  370.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  371.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  372.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  373.         xmlns:local="clr-namespace:SmallSixUI.App"
  374.         mc:Ignorable="d"
  375.         IsShowHeader="True"
  376.         HeaderBackground="#446180"
  377.         HeaderHeight="80"
  378.         Icon="logo.png"
  379.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  380.     <Grid>
  381.         
  382.     </Grid>
  383. </Ai:AiWindow><ColumnDefinition Width="*" />
  384. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  385. <Ai:AiWindow x:
  386.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  387.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  388.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  389.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  390.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  391.         xmlns:local="clr-namespace:SmallSixUI.App"
  392.         mc:Ignorable="d"
  393.         IsShowHeader="True"
  394.         HeaderBackground="#446180"
  395.         HeaderHeight="80"
  396.         Icon="logo.png"
  397.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  398.     <Grid>
  399.         
  400.     </Grid>
  401. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  402.     <ResourceDictionary.MergedDictionaries>
  403.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  404.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  405.     </ResourceDictionary.MergedDictionaries>
  406. </ResourceDictionary><Ai:AiWindow x:
  407.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  408.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  409.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  410.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  411.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  412.         xmlns:local="clr-namespace:SmallSixUI.App"
  413.         mc:Ignorable="d"
  414.         IsShowHeader="True"
  415.         HeaderBackground="#446180"
  416.         HeaderHeight="80"
  417.         Icon="logo.png"
  418.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  419.     <Grid>
  420.         
  421.     </Grid>
  422. </Ai:AiWindow><ColumnDefinition Width="auto" />
  423. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  424. <Ai:AiWindow x:
  425.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  426.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  427.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  428.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  429.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  430.         xmlns:local="clr-namespace:SmallSixUI.App"
  431.         mc:Ignorable="d"
  432.         IsShowHeader="True"
  433.         HeaderBackground="#446180"
  434.         HeaderHeight="80"
  435.         Icon="logo.png"
  436.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  437.     <Grid>
  438.         
  439.     </Grid>
  440. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  441.     <ResourceDictionary.MergedDictionaries>
  442.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  443.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  444.     </ResourceDictionary.MergedDictionaries>
  445. </ResourceDictionary>            </Grid.ColumnDefinitions>
  446. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  447. <Ai:AiWindow x:
  448.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  449.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  450.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  451.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  452.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  453.         xmlns:local="clr-namespace:SmallSixUI.App"
  454.         mc:Ignorable="d"
  455.         IsShowHeader="True"
  456.         HeaderBackground="#446180"
  457.         HeaderHeight="80"
  458.         Icon="logo.png"
  459.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  460.     <Grid>
  461.         
  462.     </Grid>
  463. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  464.     <ResourceDictionary.MergedDictionaries>
  465.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  466.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  467.     </ResourceDictionary.MergedDictionaries>
  468. </ResourceDictionary>            <Image
  469. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  470. <Ai:AiWindow x:
  471.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  472.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  473.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  474.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  475.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  476.         xmlns:local="clr-namespace:SmallSixUI.App"
  477.         mc:Ignorable="d"
  478.         IsShowHeader="True"
  479.         HeaderBackground="#446180"
  480.         HeaderHeight="80"
  481.         Icon="logo.png"
  482.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  483.     <Grid>
  484.         
  485.     </Grid>
  486. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  487.     <ResourceDictionary.MergedDictionaries>
  488.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  489.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  490.     </ResourceDictionary.MergedDictionaries>
  491. </ResourceDictionary><Ai:AiWindow x:
  492.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  493.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  494.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  495.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  496.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  497.         xmlns:local="clr-namespace:SmallSixUI.App"
  498.         mc:Ignorable="d"
  499.         IsShowHeader="True"
  500.         HeaderBackground="#446180"
  501.         HeaderHeight="80"
  502.         Icon="logo.png"
  503.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  504.     <Grid>
  505.         
  506.     </Grid>
  507. </Ai:AiWindow>x:Name="Icon"
  508. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  509. <Ai:AiWindow x:
  510.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  511.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  512.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  513.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  514.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  515.         xmlns:local="clr-namespace:SmallSixUI.App"
  516.         mc:Ignorable="d"
  517.         IsShowHeader="True"
  518.         HeaderBackground="#446180"
  519.         HeaderHeight="80"
  520.         Icon="logo.png"
  521.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  522.     <Grid>
  523.         
  524.     </Grid>
  525. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  526.     <ResourceDictionary.MergedDictionaries>
  527.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  528.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  529.     </ResourceDictionary.MergedDictionaries>
  530. </ResourceDictionary><Ai:AiWindow x:
  531.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  532.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  533.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  534.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  535.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  536.         xmlns:local="clr-namespace:SmallSixUI.App"
  537.         mc:Ignorable="d"
  538.         IsShowHeader="True"
  539.         HeaderBackground="#446180"
  540.         HeaderHeight="80"
  541.         Icon="logo.png"
  542.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  543.     <Grid>
  544.         
  545.     </Grid>
  546. </Ai:AiWindow>Width="32"
  547. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  548. <Ai:AiWindow x:
  549.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  550.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  551.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  552.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  553.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  554.         xmlns:local="clr-namespace:SmallSixUI.App"
  555.         mc:Ignorable="d"
  556.         IsShowHeader="True"
  557.         HeaderBackground="#446180"
  558.         HeaderHeight="80"
  559.         Icon="logo.png"
  560.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  561.     <Grid>
  562.         
  563.     </Grid>
  564. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  565.     <ResourceDictionary.MergedDictionaries>
  566.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  567.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  568.     </ResourceDictionary.MergedDictionaries>
  569. </ResourceDictionary><Ai:AiWindow x:
  570.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  571.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  572.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  573.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  574.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  575.         xmlns:local="clr-namespace:SmallSixUI.App"
  576.         mc:Ignorable="d"
  577.         IsShowHeader="True"
  578.         HeaderBackground="#446180"
  579.         HeaderHeight="80"
  580.         Icon="logo.png"
  581.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  582.     <Grid>
  583.         
  584.     </Grid>
  585. </Ai:AiWindow>Height="32"
  586. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  587. <Ai:AiWindow x:
  588.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  589.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  590.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  591.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  592.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  593.         xmlns:local="clr-namespace:SmallSixUI.App"
  594.         mc:Ignorable="d"
  595.         IsShowHeader="True"
  596.         HeaderBackground="#446180"
  597.         HeaderHeight="80"
  598.         Icon="logo.png"
  599.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  600.     <Grid>
  601.         
  602.     </Grid>
  603. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  604.     <ResourceDictionary.MergedDictionaries>
  605.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  606.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  607.     </ResourceDictionary.MergedDictionaries>
  608. </ResourceDictionary><Ai:AiWindow x:
  609.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  610.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  611.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  612.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  613.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  614.         xmlns:local="clr-namespace:SmallSixUI.App"
  615.         mc:Ignorable="d"
  616.         IsShowHeader="True"
  617.         HeaderBackground="#446180"
  618.         HeaderHeight="80"
  619.         Icon="logo.png"
  620.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  621.     <Grid>
  622.         
  623.     </Grid>
  624. </Ai:AiWindow>Margin="5"
  625. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  626. <Ai:AiWindow x:
  627.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  628.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  629.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  630.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  631.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  632.         xmlns:local="clr-namespace:SmallSixUI.App"
  633.         mc:Ignorable="d"
  634.         IsShowHeader="True"
  635.         HeaderBackground="#446180"
  636.         HeaderHeight="80"
  637.         Icon="logo.png"
  638.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  639.     <Grid>
  640.         
  641.     </Grid>
  642. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  643.     <ResourceDictionary.MergedDictionaries>
  644.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  645.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  646.     </ResourceDictionary.MergedDictionaries>
  647. </ResourceDictionary><Ai:AiWindow x:
  648.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  649.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  650.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  651.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  652.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  653.         xmlns:local="clr-namespace:SmallSixUI.App"
  654.         mc:Ignorable="d"
  655.         IsShowHeader="True"
  656.         HeaderBackground="#446180"
  657.         HeaderHeight="80"
  658.         Icon="logo.png"
  659.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  660.     <Grid>
  661.         
  662.     </Grid>
  663. </Ai:AiWindow>Source="{TemplateBinding Icon}"
  664. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  665. <Ai:AiWindow x:
  666.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  667.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  668.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  669.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  670.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  671.         xmlns:local="clr-namespace:SmallSixUI.App"
  672.         mc:Ignorable="d"
  673.         IsShowHeader="True"
  674.         HeaderBackground="#446180"
  675.         HeaderHeight="80"
  676.         Icon="logo.png"
  677.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  678.     <Grid>
  679.         
  680.     </Grid>
  681. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  682.     <ResourceDictionary.MergedDictionaries>
  683.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  684.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  685.     </ResourceDictionary.MergedDictionaries>
  686. </ResourceDictionary><Ai:AiWindow x:
  687.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  688.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  689.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  690.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  691.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  692.         xmlns:local="clr-namespace:SmallSixUI.App"
  693.         mc:Ignorable="d"
  694.         IsShowHeader="True"
  695.         HeaderBackground="#446180"
  696.         HeaderHeight="80"
  697.         Icon="logo.png"
  698.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  699.     <Grid>
  700.         
  701.     </Grid>
  702. </Ai:AiWindow>Stretch="Fill" />
  703. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  704. <Ai:AiWindow x:
  705.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  706.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  707.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  708.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  709.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  710.         xmlns:local="clr-namespace:SmallSixUI.App"
  711.         mc:Ignorable="d"
  712.         IsShowHeader="True"
  713.         HeaderBackground="#446180"
  714.         HeaderHeight="80"
  715.         Icon="logo.png"
  716.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  717.     <Grid>
  718.         
  719.     </Grid>
  720. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  721.     <ResourceDictionary.MergedDictionaries>
  722.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  723.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  724.     </ResourceDictionary.MergedDictionaries>
  725. </ResourceDictionary>            <TextBlock
  726. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  727. <Ai:AiWindow x:
  728.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  729.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  730.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  731.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  732.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  733.         xmlns:local="clr-namespace:SmallSixUI.App"
  734.         mc:Ignorable="d"
  735.         IsShowHeader="True"
  736.         HeaderBackground="#446180"
  737.         HeaderHeight="80"
  738.         Icon="logo.png"
  739.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  740.     <Grid>
  741.         
  742.     </Grid>
  743. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  744.     <ResourceDictionary.MergedDictionaries>
  745.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  746.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  747.     </ResourceDictionary.MergedDictionaries>
  748. </ResourceDictionary><Ai:AiWindow x:
  749.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  750.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  751.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  752.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  753.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  754.         xmlns:local="clr-namespace:SmallSixUI.App"
  755.         mc:Ignorable="d"
  756.         IsShowHeader="True"
  757.         HeaderBackground="#446180"
  758.         HeaderHeight="80"
  759.         Icon="logo.png"
  760.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  761.     <Grid>
  762.         
  763.     </Grid>
  764. </Ai:AiWindow>x:Name="HeaderText"
  765. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  766. <Ai:AiWindow x:
  767.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  768.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  769.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  770.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  771.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  772.         xmlns:local="clr-namespace:SmallSixUI.App"
  773.         mc:Ignorable="d"
  774.         IsShowHeader="True"
  775.         HeaderBackground="#446180"
  776.         HeaderHeight="80"
  777.         Icon="logo.png"
  778.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  779.     <Grid>
  780.         
  781.     </Grid>
  782. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  783.     <ResourceDictionary.MergedDictionaries>
  784.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  785.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  786.     </ResourceDictionary.MergedDictionaries>
  787. </ResourceDictionary><Ai:AiWindow x:
  788.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  789.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  790.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  791.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  792.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  793.         xmlns:local="clr-namespace:SmallSixUI.App"
  794.         mc:Ignorable="d"
  795.         IsShowHeader="True"
  796.         HeaderBackground="#446180"
  797.         HeaderHeight="80"
  798.         Icon="logo.png"
  799.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  800.     <Grid>
  801.         
  802.     </Grid>
  803. </Ai:AiWindow>Grid.Column="1"
  804. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  805. <Ai:AiWindow x:
  806.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  807.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  808.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  809.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  810.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  811.         xmlns:local="clr-namespace:SmallSixUI.App"
  812.         mc:Ignorable="d"
  813.         IsShowHeader="True"
  814.         HeaderBackground="#446180"
  815.         HeaderHeight="80"
  816.         Icon="logo.png"
  817.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  818.     <Grid>
  819.         
  820.     </Grid>
  821. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  822.     <ResourceDictionary.MergedDictionaries>
  823.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  824.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  825.     </ResourceDictionary.MergedDictionaries>
  826. </ResourceDictionary><Ai:AiWindow x:
  827.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  828.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  829.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  830.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  831.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  832.         xmlns:local="clr-namespace:SmallSixUI.App"
  833.         mc:Ignorable="d"
  834.         IsShowHeader="True"
  835.         HeaderBackground="#446180"
  836.         HeaderHeight="80"
  837.         Icon="logo.png"
  838.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  839.     <Grid>
  840.         
  841.     </Grid>
  842. </Ai:AiWindow>Margin="5,0"
  843. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  844. <Ai:AiWindow x:
  845.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  846.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  847.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  848.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  849.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  850.         xmlns:local="clr-namespace:SmallSixUI.App"
  851.         mc:Ignorable="d"
  852.         IsShowHeader="True"
  853.         HeaderBackground="#446180"
  854.         HeaderHeight="80"
  855.         Icon="logo.png"
  856.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  857.     <Grid>
  858.         
  859.     </Grid>
  860. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  861.     <ResourceDictionary.MergedDictionaries>
  862.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  863.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  864.     </ResourceDictionary.MergedDictionaries>
  865. </ResourceDictionary><Ai:AiWindow x:
  866.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  867.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  868.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  869.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  870.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  871.         xmlns:local="clr-namespace:SmallSixUI.App"
  872.         mc:Ignorable="d"
  873.         IsShowHeader="True"
  874.         HeaderBackground="#446180"
  875.         HeaderHeight="80"
  876.         Icon="logo.png"
  877.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  878.     <Grid>
  879.         
  880.     </Grid>
  881. </Ai:AiWindow>FontSize="13"
  882. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  883. <Ai:AiWindow x:
  884.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  885.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  886.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  887.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  888.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  889.         xmlns:local="clr-namespace:SmallSixUI.App"
  890.         mc:Ignorable="d"
  891.         IsShowHeader="True"
  892.         HeaderBackground="#446180"
  893.         HeaderHeight="80"
  894.         Icon="logo.png"
  895.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  896.     <Grid>
  897.         
  898.     </Grid>
  899. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  900.     <ResourceDictionary.MergedDictionaries>
  901.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  902.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  903.     </ResourceDictionary.MergedDictionaries>
  904. </ResourceDictionary><Ai:AiWindow x:
  905.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  906.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  907.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  908.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  909.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  910.         xmlns:local="clr-namespace:SmallSixUI.App"
  911.         mc:Ignorable="d"
  912.         IsShowHeader="True"
  913.         HeaderBackground="#446180"
  914.         HeaderHeight="80"
  915.         Icon="logo.png"
  916.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  917.     <Grid>
  918.         
  919.     </Grid>
  920. </Ai:AiWindow>VerticalAlignment="Center"
  921. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  922. <Ai:AiWindow x:
  923.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  924.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  925.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  926.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  927.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  928.         xmlns:local="clr-namespace:SmallSixUI.App"
  929.         mc:Ignorable="d"
  930.         IsShowHeader="True"
  931.         HeaderBackground="#446180"
  932.         HeaderHeight="80"
  933.         Icon="logo.png"
  934.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  935.     <Grid>
  936.         
  937.     </Grid>
  938. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  939.     <ResourceDictionary.MergedDictionaries>
  940.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  941.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  942.     </ResourceDictionary.MergedDictionaries>
  943. </ResourceDictionary><Ai:AiWindow x:
  944.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  945.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  946.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  947.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  948.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  949.         xmlns:local="clr-namespace:SmallSixUI.App"
  950.         mc:Ignorable="d"
  951.         IsShowHeader="True"
  952.         HeaderBackground="#446180"
  953.         HeaderHeight="80"
  954.         Icon="logo.png"
  955.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  956.     <Grid>
  957.         
  958.     </Grid>
  959. </Ai:AiWindow>Foreground="{TemplateBinding HeaderForeground}"
  960. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  961. <Ai:AiWindow x:
  962.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  963.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  964.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  965.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  966.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  967.         xmlns:local="clr-namespace:SmallSixUI.App"
  968.         mc:Ignorable="d"
  969.         IsShowHeader="True"
  970.         HeaderBackground="#446180"
  971.         HeaderHeight="80"
  972.         Icon="logo.png"
  973.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  974.     <Grid>
  975.         
  976.     </Grid>
  977. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  978.     <ResourceDictionary.MergedDictionaries>
  979.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  980.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  981.     </ResourceDictionary.MergedDictionaries>
  982. </ResourceDictionary><Ai:AiWindow x:
  983.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  984.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  985.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  986.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  987.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  988.         xmlns:local="clr-namespace:SmallSixUI.App"
  989.         mc:Ignorable="d"
  990.         IsShowHeader="True"
  991.         HeaderBackground="#446180"
  992.         HeaderHeight="80"
  993.         Icon="logo.png"
  994.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  995.     <Grid>
  996.         
  997.     </Grid>
  998. </Ai:AiWindow>Text="{TemplateBinding Title}" />
  999. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1000. <Ai:AiWindow x:
  1001.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1002.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1003.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1004.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1005.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1006.         xmlns:local="clr-namespace:SmallSixUI.App"
  1007.         mc:Ignorable="d"
  1008.         IsShowHeader="True"
  1009.         HeaderBackground="#446180"
  1010.         HeaderHeight="80"
  1011.         Icon="logo.png"
  1012.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1013.     <Grid>
  1014.         
  1015.     </Grid>
  1016. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1017.     <ResourceDictionary.MergedDictionaries>
  1018.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1019.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1020.     </ResourceDictionary.MergedDictionaries>
  1021. </ResourceDictionary>            <ContentPresenter
  1022. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1023. <Ai:AiWindow x:
  1024.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1025.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1026.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1027.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1028.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1029.         xmlns:local="clr-namespace:SmallSixUI.App"
  1030.         mc:Ignorable="d"
  1031.         IsShowHeader="True"
  1032.         HeaderBackground="#446180"
  1033.         HeaderHeight="80"
  1034.         Icon="logo.png"
  1035.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1036.     <Grid>
  1037.         
  1038.     </Grid>
  1039. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1040.     <ResourceDictionary.MergedDictionaries>
  1041.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1042.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1043.     </ResourceDictionary.MergedDictionaries>
  1044. </ResourceDictionary><Ai:AiWindow x:
  1045.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1046.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1047.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1048.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1049.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1050.         xmlns:local="clr-namespace:SmallSixUI.App"
  1051.         mc:Ignorable="d"
  1052.         IsShowHeader="True"
  1053.         HeaderBackground="#446180"
  1054.         HeaderHeight="80"
  1055.         Icon="logo.png"
  1056.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1057.     <Grid>
  1058.         
  1059.     </Grid>
  1060. </Ai:AiWindow>Grid.Column="2"
  1061. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1062. <Ai:AiWindow x:
  1063.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1064.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1065.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1066.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1067.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1068.         xmlns:local="clr-namespace:SmallSixUI.App"
  1069.         mc:Ignorable="d"
  1070.         IsShowHeader="True"
  1071.         HeaderBackground="#446180"
  1072.         HeaderHeight="80"
  1073.         Icon="logo.png"
  1074.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1075.     <Grid>
  1076.         
  1077.     </Grid>
  1078. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1079.     <ResourceDictionary.MergedDictionaries>
  1080.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1081.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1082.     </ResourceDictionary.MergedDictionaries>
  1083. </ResourceDictionary><Ai:AiWindow x:
  1084.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1085.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1086.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1087.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1088.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1089.         xmlns:local="clr-namespace:SmallSixUI.App"
  1090.         mc:Ignorable="d"
  1091.         IsShowHeader="True"
  1092.         HeaderBackground="#446180"
  1093.         HeaderHeight="80"
  1094.         Icon="logo.png"
  1095.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1096.     <Grid>
  1097.         
  1098.     </Grid>
  1099. </Ai:AiWindow>ContentSource="HeaderContent"
  1100. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1101. <Ai:AiWindow x:
  1102.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1103.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1104.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1105.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1106.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1107.         xmlns:local="clr-namespace:SmallSixUI.App"
  1108.         mc:Ignorable="d"
  1109.         IsShowHeader="True"
  1110.         HeaderBackground="#446180"
  1111.         HeaderHeight="80"
  1112.         Icon="logo.png"
  1113.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1114.     <Grid>
  1115.         
  1116.     </Grid>
  1117. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1118.     <ResourceDictionary.MergedDictionaries>
  1119.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1120.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1121.     </ResourceDictionary.MergedDictionaries>
  1122. </ResourceDictionary><Ai:AiWindow x:
  1123.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1124.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1125.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1126.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1127.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1128.         xmlns:local="clr-namespace:SmallSixUI.App"
  1129.         mc:Ignorable="d"
  1130.         IsShowHeader="True"
  1131.         HeaderBackground="#446180"
  1132.         HeaderHeight="80"
  1133.         Icon="logo.png"
  1134.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1135.     <Grid>
  1136.         
  1137.     </Grid>
  1138. </Ai:AiWindow>WindowChrome.IsHitTestVisibleInChrome="true" />
  1139. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1140. <Ai:AiWindow x:
  1141.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1142.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1143.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1144.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1145.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1146.         xmlns:local="clr-namespace:SmallSixUI.App"
  1147.         mc:Ignorable="d"
  1148.         IsShowHeader="True"
  1149.         HeaderBackground="#446180"
  1150.         HeaderHeight="80"
  1151.         Icon="logo.png"
  1152.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1153.     <Grid>
  1154.         
  1155.     </Grid>
  1156. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1157.     <ResourceDictionary.MergedDictionaries>
  1158.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1159.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1160.     </ResourceDictionary.MergedDictionaries>
  1161. </ResourceDictionary>            <StackPanel Grid.Column="3" Orientation="Horizontal">
  1162. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1163. <Ai:AiWindow x:
  1164.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1165.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1166.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1167.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1168.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1169.         xmlns:local="clr-namespace:SmallSixUI.App"
  1170.         mc:Ignorable="d"
  1171.         IsShowHeader="True"
  1172.         HeaderBackground="#446180"
  1173.         HeaderHeight="80"
  1174.         Icon="logo.png"
  1175.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1176.     <Grid>
  1177.         
  1178.     </Grid>
  1179. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1180.     <ResourceDictionary.MergedDictionaries>
  1181.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1182.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1183.     </ResourceDictionary.MergedDictionaries>
  1184. </ResourceDictionary><Ai:AiWindow x:
  1185.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1186.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1187.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1188.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1189.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1190.         xmlns:local="clr-namespace:SmallSixUI.App"
  1191.         mc:Ignorable="d"
  1192.         IsShowHeader="True"
  1193.         HeaderBackground="#446180"
  1194.         HeaderHeight="80"
  1195.         Icon="logo.png"
  1196.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1197.     <Grid>
  1198.         
  1199.     </Grid>
  1200. </Ai:AiWindow><StackPanel.Resources>
  1201. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1202. <Ai:AiWindow x:
  1203.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1204.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1205.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1206.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1207.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1208.         xmlns:local="clr-namespace:SmallSixUI.App"
  1209.         mc:Ignorable="d"
  1210.         IsShowHeader="True"
  1211.         HeaderBackground="#446180"
  1212.         HeaderHeight="80"
  1213.         Icon="logo.png"
  1214.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1215.     <Grid>
  1216.         
  1217.     </Grid>
  1218. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1219.     <ResourceDictionary.MergedDictionaries>
  1220.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1221.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1222.     </ResourceDictionary.MergedDictionaries>
  1223. </ResourceDictionary><Ai:AiWindow x:
  1224.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1225.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1226.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1227.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1228.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1229.         xmlns:local="clr-namespace:SmallSixUI.App"
  1230.         mc:Ignorable="d"
  1231.         IsShowHeader="True"
  1232.         HeaderBackground="#446180"
  1233.         HeaderHeight="80"
  1234.         Icon="logo.png"
  1235.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1236.     <Grid>
  1237.         
  1238.     </Grid>
  1239. </Ai:AiWindow>    <ControlTemplate x:Key="WindowButtonTemplate" TargetType="Button">
  1240. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1241. <Ai:AiWindow x:
  1242.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1243.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1244.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1245.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1246.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1247.         xmlns:local="clr-namespace:SmallSixUI.App"
  1248.         mc:Ignorable="d"
  1249.         IsShowHeader="True"
  1250.         HeaderBackground="#446180"
  1251.         HeaderHeight="80"
  1252.         Icon="logo.png"
  1253.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1254.     <Grid>
  1255.         
  1256.     </Grid>
  1257. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1258.     <ResourceDictionary.MergedDictionaries>
  1259.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1260.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1261.     </ResourceDictionary.MergedDictionaries>
  1262. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1263. <Ai:AiWindow x:
  1264.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1265.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1266.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1267.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1268.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1269.         xmlns:local="clr-namespace:SmallSixUI.App"
  1270.         mc:Ignorable="d"
  1271.         IsShowHeader="True"
  1272.         HeaderBackground="#446180"
  1273.         HeaderHeight="80"
  1274.         Icon="logo.png"
  1275.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1276.     <Grid>
  1277.         
  1278.     </Grid>
  1279. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1280.     <ResourceDictionary.MergedDictionaries>
  1281.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1282.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1283.     </ResourceDictionary.MergedDictionaries>
  1284. </ResourceDictionary><Grid x:Name="body" Background="Transparent">
  1285. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1286. <Ai:AiWindow x:
  1287.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1288.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1289.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1290.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1291.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1292.         xmlns:local="clr-namespace:SmallSixUI.App"
  1293.         mc:Ignorable="d"
  1294.         IsShowHeader="True"
  1295.         HeaderBackground="#446180"
  1296.         HeaderHeight="80"
  1297.         Icon="logo.png"
  1298.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1299.     <Grid>
  1300.         
  1301.     </Grid>
  1302. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1303.     <ResourceDictionary.MergedDictionaries>
  1304.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1305.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1306.     </ResourceDictionary.MergedDictionaries>
  1307. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1308. <Ai:AiWindow x:
  1309.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1310.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1311.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1312.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1313.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1314.         xmlns:local="clr-namespace:SmallSixUI.App"
  1315.         mc:Ignorable="d"
  1316.         IsShowHeader="True"
  1317.         HeaderBackground="#446180"
  1318.         HeaderHeight="80"
  1319.         Icon="logo.png"
  1320.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1321.     <Grid>
  1322.         
  1323.     </Grid>
  1324. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1325.     <ResourceDictionary.MergedDictionaries>
  1326.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1327.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1328.     </ResourceDictionary.MergedDictionaries>
  1329. </ResourceDictionary>    <Border
  1330. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1331. <Ai:AiWindow x:
  1332.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1333.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1334.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1335.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1336.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1337.         xmlns:local="clr-namespace:SmallSixUI.App"
  1338.         mc:Ignorable="d"
  1339.         IsShowHeader="True"
  1340.         HeaderBackground="#446180"
  1341.         HeaderHeight="80"
  1342.         Icon="logo.png"
  1343.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1344.     <Grid>
  1345.         
  1346.     </Grid>
  1347. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1348.     <ResourceDictionary.MergedDictionaries>
  1349.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1350.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1351.     </ResourceDictionary.MergedDictionaries>
  1352. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1353. <Ai:AiWindow x:
  1354.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1355.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1356.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1357.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1358.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1359.         xmlns:local="clr-namespace:SmallSixUI.App"
  1360.         mc:Ignorable="d"
  1361.         IsShowHeader="True"
  1362.         HeaderBackground="#446180"
  1363.         HeaderHeight="80"
  1364.         Icon="logo.png"
  1365.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1366.     <Grid>
  1367.         
  1368.     </Grid>
  1369. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1370.     <ResourceDictionary.MergedDictionaries>
  1371.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1372.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1373.     </ResourceDictionary.MergedDictionaries>
  1374. </ResourceDictionary>        Margin="3"
  1375. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1376. <Ai:AiWindow x:
  1377.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1378.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1379.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1380.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1381.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1382.         xmlns:local="clr-namespace:SmallSixUI.App"
  1383.         mc:Ignorable="d"
  1384.         IsShowHeader="True"
  1385.         HeaderBackground="#446180"
  1386.         HeaderHeight="80"
  1387.         Icon="logo.png"
  1388.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1389.     <Grid>
  1390.         
  1391.     </Grid>
  1392. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1393.     <ResourceDictionary.MergedDictionaries>
  1394.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1395.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1396.     </ResourceDictionary.MergedDictionaries>
  1397. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1398. <Ai:AiWindow x:
  1399.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1400.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1401.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1402.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1403.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1404.         xmlns:local="clr-namespace:SmallSixUI.App"
  1405.         mc:Ignorable="d"
  1406.         IsShowHeader="True"
  1407.         HeaderBackground="#446180"
  1408.         HeaderHeight="80"
  1409.         Icon="logo.png"
  1410.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1411.     <Grid>
  1412.         
  1413.     </Grid>
  1414. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1415.     <ResourceDictionary.MergedDictionaries>
  1416.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1417.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1418.     </ResourceDictionary.MergedDictionaries>
  1419. </ResourceDictionary>        Background="Transparent"
  1420. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1421. <Ai:AiWindow x:
  1422.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1423.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1424.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1425.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1426.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1427.         xmlns:local="clr-namespace:SmallSixUI.App"
  1428.         mc:Ignorable="d"
  1429.         IsShowHeader="True"
  1430.         HeaderBackground="#446180"
  1431.         HeaderHeight="80"
  1432.         Icon="logo.png"
  1433.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1434.     <Grid>
  1435.         
  1436.     </Grid>
  1437. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1438.     <ResourceDictionary.MergedDictionaries>
  1439.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1440.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1441.     </ResourceDictionary.MergedDictionaries>
  1442. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1443. <Ai:AiWindow x:
  1444.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1445.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1446.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1447.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1448.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1449.         xmlns:local="clr-namespace:SmallSixUI.App"
  1450.         mc:Ignorable="d"
  1451.         IsShowHeader="True"
  1452.         HeaderBackground="#446180"
  1453.         HeaderHeight="80"
  1454.         Icon="logo.png"
  1455.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1456.     <Grid>
  1457.         
  1458.     </Grid>
  1459. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1460.     <ResourceDictionary.MergedDictionaries>
  1461.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1462.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1463.     </ResourceDictionary.MergedDictionaries>
  1464. </ResourceDictionary>        WindowChrome.IsHitTestVisibleInChrome="True" />
  1465. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1466. <Ai:AiWindow x:
  1467.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1468.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1469.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1470.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1471.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1472.         xmlns:local="clr-namespace:SmallSixUI.App"
  1473.         mc:Ignorable="d"
  1474.         IsShowHeader="True"
  1475.         HeaderBackground="#446180"
  1476.         HeaderHeight="80"
  1477.         Icon="logo.png"
  1478.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1479.     <Grid>
  1480.         
  1481.     </Grid>
  1482. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1483.     <ResourceDictionary.MergedDictionaries>
  1484.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1485.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1486.     </ResourceDictionary.MergedDictionaries>
  1487. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1488. <Ai:AiWindow x:
  1489.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1490.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1491.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1492.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1493.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1494.         xmlns:local="clr-namespace:SmallSixUI.App"
  1495.         mc:Ignorable="d"
  1496.         IsShowHeader="True"
  1497.         HeaderBackground="#446180"
  1498.         HeaderHeight="80"
  1499.         Icon="logo.png"
  1500.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1501.     <Grid>
  1502.         
  1503.     </Grid>
  1504. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1505.     <ResourceDictionary.MergedDictionaries>
  1506.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1507.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1508.     </ResourceDictionary.MergedDictionaries>
  1509. </ResourceDictionary>    <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
  1510. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1511. <Ai:AiWindow x:
  1512.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1513.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1514.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1515.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1516.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1517.         xmlns:local="clr-namespace:SmallSixUI.App"
  1518.         mc:Ignorable="d"
  1519.         IsShowHeader="True"
  1520.         HeaderBackground="#446180"
  1521.         HeaderHeight="80"
  1522.         Icon="logo.png"
  1523.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1524.     <Grid>
  1525.         
  1526.     </Grid>
  1527. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1528.     <ResourceDictionary.MergedDictionaries>
  1529.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1530.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1531.     </ResourceDictionary.MergedDictionaries>
  1532. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1533. <Ai:AiWindow x:
  1534.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1535.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1536.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1537.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1538.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1539.         xmlns:local="clr-namespace:SmallSixUI.App"
  1540.         mc:Ignorable="d"
  1541.         IsShowHeader="True"
  1542.         HeaderBackground="#446180"
  1543.         HeaderHeight="80"
  1544.         Icon="logo.png"
  1545.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1546.     <Grid>
  1547.         
  1548.     </Grid>
  1549. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1550.     <ResourceDictionary.MergedDictionaries>
  1551.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1552.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1553.     </ResourceDictionary.MergedDictionaries>
  1554. </ResourceDictionary></Grid>
  1555. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1556. <Ai:AiWindow x:
  1557.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1558.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1559.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1560.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1561.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1562.         xmlns:local="clr-namespace:SmallSixUI.App"
  1563.         mc:Ignorable="d"
  1564.         IsShowHeader="True"
  1565.         HeaderBackground="#446180"
  1566.         HeaderHeight="80"
  1567.         Icon="logo.png"
  1568.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1569.     <Grid>
  1570.         
  1571.     </Grid>
  1572. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1573.     <ResourceDictionary.MergedDictionaries>
  1574.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1575.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1576.     </ResourceDictionary.MergedDictionaries>
  1577. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1578. <Ai:AiWindow x:
  1579.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1580.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1581.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1582.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1583.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1584.         xmlns:local="clr-namespace:SmallSixUI.App"
  1585.         mc:Ignorable="d"
  1586.         IsShowHeader="True"
  1587.         HeaderBackground="#446180"
  1588.         HeaderHeight="80"
  1589.         Icon="logo.png"
  1590.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1591.     <Grid>
  1592.         
  1593.     </Grid>
  1594. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1595.     <ResourceDictionary.MergedDictionaries>
  1596.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1597.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1598.     </ResourceDictionary.MergedDictionaries>
  1599. </ResourceDictionary><ControlTemplate.Triggers>
  1600. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1601. <Ai:AiWindow x:
  1602.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1603.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1604.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1605.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1606.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1607.         xmlns:local="clr-namespace:SmallSixUI.App"
  1608.         mc:Ignorable="d"
  1609.         IsShowHeader="True"
  1610.         HeaderBackground="#446180"
  1611.         HeaderHeight="80"
  1612.         Icon="logo.png"
  1613.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1614.     <Grid>
  1615.         
  1616.     </Grid>
  1617. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1618.     <ResourceDictionary.MergedDictionaries>
  1619.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1620.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1621.     </ResourceDictionary.MergedDictionaries>
  1622. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1623. <Ai:AiWindow x:
  1624.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1625.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1626.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1627.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1628.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1629.         xmlns:local="clr-namespace:SmallSixUI.App"
  1630.         mc:Ignorable="d"
  1631.         IsShowHeader="True"
  1632.         HeaderBackground="#446180"
  1633.         HeaderHeight="80"
  1634.         Icon="logo.png"
  1635.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1636.     <Grid>
  1637.         
  1638.     </Grid>
  1639. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1640.     <ResourceDictionary.MergedDictionaries>
  1641.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1642.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1643.     </ResourceDictionary.MergedDictionaries>
  1644. </ResourceDictionary>    <Trigger Property="IsMouseOver" Value="True">
  1645. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1646. <Ai:AiWindow x:
  1647.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1648.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1649.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1650.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1651.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1652.         xmlns:local="clr-namespace:SmallSixUI.App"
  1653.         mc:Ignorable="d"
  1654.         IsShowHeader="True"
  1655.         HeaderBackground="#446180"
  1656.         HeaderHeight="80"
  1657.         Icon="logo.png"
  1658.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1659.     <Grid>
  1660.         
  1661.     </Grid>
  1662. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1663.     <ResourceDictionary.MergedDictionaries>
  1664.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1665.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1666.     </ResourceDictionary.MergedDictionaries>
  1667. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1668. <Ai:AiWindow x:
  1669.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1670.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1671.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1672.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1673.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1674.         xmlns:local="clr-namespace:SmallSixUI.App"
  1675.         mc:Ignorable="d"
  1676.         IsShowHeader="True"
  1677.         HeaderBackground="#446180"
  1678.         HeaderHeight="80"
  1679.         Icon="logo.png"
  1680.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1681.     <Grid>
  1682.         
  1683.     </Grid>
  1684. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1685.     <ResourceDictionary.MergedDictionaries>
  1686.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1687.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1688.     </ResourceDictionary.MergedDictionaries>
  1689. </ResourceDictionary>        <Setter TargetName="body" Property="Background">
  1690. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1691. <Ai:AiWindow x:
  1692.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1693.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1694.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1695.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1696.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1697.         xmlns:local="clr-namespace:SmallSixUI.App"
  1698.         mc:Ignorable="d"
  1699.         IsShowHeader="True"
  1700.         HeaderBackground="#446180"
  1701.         HeaderHeight="80"
  1702.         Icon="logo.png"
  1703.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1704.     <Grid>
  1705.         
  1706.     </Grid>
  1707. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1708.     <ResourceDictionary.MergedDictionaries>
  1709.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1710.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1711.     </ResourceDictionary.MergedDictionaries>
  1712. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1713. <Ai:AiWindow x:
  1714.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1715.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1716.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1717.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1718.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1719.         xmlns:local="clr-namespace:SmallSixUI.App"
  1720.         mc:Ignorable="d"
  1721.         IsShowHeader="True"
  1722.         HeaderBackground="#446180"
  1723.         HeaderHeight="80"
  1724.         Icon="logo.png"
  1725.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1726.     <Grid>
  1727.         
  1728.     </Grid>
  1729. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1730.     <ResourceDictionary.MergedDictionaries>
  1731.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1732.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1733.     </ResourceDictionary.MergedDictionaries>
  1734. </ResourceDictionary>            <Setter.Value>
  1735. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1736. <Ai:AiWindow x:
  1737.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1738.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1739.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1740.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1741.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1742.         xmlns:local="clr-namespace:SmallSixUI.App"
  1743.         mc:Ignorable="d"
  1744.         IsShowHeader="True"
  1745.         HeaderBackground="#446180"
  1746.         HeaderHeight="80"
  1747.         Icon="logo.png"
  1748.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1749.     <Grid>
  1750.         
  1751.     </Grid>
  1752. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1753.     <ResourceDictionary.MergedDictionaries>
  1754.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1755.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1756.     </ResourceDictionary.MergedDictionaries>
  1757. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1758. <Ai:AiWindow x:
  1759.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1760.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1761.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1762.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1763.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1764.         xmlns:local="clr-namespace:SmallSixUI.App"
  1765.         mc:Ignorable="d"
  1766.         IsShowHeader="True"
  1767.         HeaderBackground="#446180"
  1768.         HeaderHeight="80"
  1769.         Icon="logo.png"
  1770.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1771.     <Grid>
  1772.         
  1773.     </Grid>
  1774. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1775.     <ResourceDictionary.MergedDictionaries>
  1776.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1777.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1778.     </ResourceDictionary.MergedDictionaries>
  1779. </ResourceDictionary><Ai:AiWindow x:
  1780.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1781.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1782.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1783.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1784.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1785.         xmlns:local="clr-namespace:SmallSixUI.App"
  1786.         mc:Ignorable="d"
  1787.         IsShowHeader="True"
  1788.         HeaderBackground="#446180"
  1789.         HeaderHeight="80"
  1790.         Icon="logo.png"
  1791.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1792.     <Grid>
  1793.         
  1794.     </Grid>
  1795. </Ai:AiWindow><SolidColorBrush Opacity="0.1" Color="Black" />
  1796. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1797. <Ai:AiWindow x:
  1798.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1799.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1800.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1801.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1802.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1803.         xmlns:local="clr-namespace:SmallSixUI.App"
  1804.         mc:Ignorable="d"
  1805.         IsShowHeader="True"
  1806.         HeaderBackground="#446180"
  1807.         HeaderHeight="80"
  1808.         Icon="logo.png"
  1809.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1810.     <Grid>
  1811.         
  1812.     </Grid>
  1813. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1814.     <ResourceDictionary.MergedDictionaries>
  1815.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1816.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1817.     </ResourceDictionary.MergedDictionaries>
  1818. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1819. <Ai:AiWindow x:
  1820.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1821.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1822.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1823.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1824.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1825.         xmlns:local="clr-namespace:SmallSixUI.App"
  1826.         mc:Ignorable="d"
  1827.         IsShowHeader="True"
  1828.         HeaderBackground="#446180"
  1829.         HeaderHeight="80"
  1830.         Icon="logo.png"
  1831.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1832.     <Grid>
  1833.         
  1834.     </Grid>
  1835. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1836.     <ResourceDictionary.MergedDictionaries>
  1837.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1838.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1839.     </ResourceDictionary.MergedDictionaries>
  1840. </ResourceDictionary>            </Setter.Value>
  1841. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1842. <Ai:AiWindow x:
  1843.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1844.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1845.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1846.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1847.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1848.         xmlns:local="clr-namespace:SmallSixUI.App"
  1849.         mc:Ignorable="d"
  1850.         IsShowHeader="True"
  1851.         HeaderBackground="#446180"
  1852.         HeaderHeight="80"
  1853.         Icon="logo.png"
  1854.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1855.     <Grid>
  1856.         
  1857.     </Grid>
  1858. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1859.     <ResourceDictionary.MergedDictionaries>
  1860.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1861.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1862.     </ResourceDictionary.MergedDictionaries>
  1863. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1864. <Ai:AiWindow x:
  1865.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1866.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1867.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1868.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1869.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1870.         xmlns:local="clr-namespace:SmallSixUI.App"
  1871.         mc:Ignorable="d"
  1872.         IsShowHeader="True"
  1873.         HeaderBackground="#446180"
  1874.         HeaderHeight="80"
  1875.         Icon="logo.png"
  1876.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1877.     <Grid>
  1878.         
  1879.     </Grid>
  1880. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1881.     <ResourceDictionary.MergedDictionaries>
  1882.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1883.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1884.     </ResourceDictionary.MergedDictionaries>
  1885. </ResourceDictionary>        </Setter>
  1886. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1887. <Ai:AiWindow x:
  1888.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1889.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1890.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1891.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1892.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1893.         xmlns:local="clr-namespace:SmallSixUI.App"
  1894.         mc:Ignorable="d"
  1895.         IsShowHeader="True"
  1896.         HeaderBackground="#446180"
  1897.         HeaderHeight="80"
  1898.         Icon="logo.png"
  1899.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1900.     <Grid>
  1901.         
  1902.     </Grid>
  1903. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1904.     <ResourceDictionary.MergedDictionaries>
  1905.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1906.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1907.     </ResourceDictionary.MergedDictionaries>
  1908. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1909. <Ai:AiWindow x:
  1910.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1911.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1912.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1913.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1914.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1915.         xmlns:local="clr-namespace:SmallSixUI.App"
  1916.         mc:Ignorable="d"
  1917.         IsShowHeader="True"
  1918.         HeaderBackground="#446180"
  1919.         HeaderHeight="80"
  1920.         Icon="logo.png"
  1921.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1922.     <Grid>
  1923.         
  1924.     </Grid>
  1925. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1926.     <ResourceDictionary.MergedDictionaries>
  1927.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1928.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1929.     </ResourceDictionary.MergedDictionaries>
  1930. </ResourceDictionary>    </Trigger>
  1931. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1932. <Ai:AiWindow x:
  1933.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1934.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1935.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1936.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1937.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1938.         xmlns:local="clr-namespace:SmallSixUI.App"
  1939.         mc:Ignorable="d"
  1940.         IsShowHeader="True"
  1941.         HeaderBackground="#446180"
  1942.         HeaderHeight="80"
  1943.         Icon="logo.png"
  1944.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1945.     <Grid>
  1946.         
  1947.     </Grid>
  1948. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1949.     <ResourceDictionary.MergedDictionaries>
  1950.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1951.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1952.     </ResourceDictionary.MergedDictionaries>
  1953. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1954. <Ai:AiWindow x:
  1955.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1956.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1957.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1958.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1959.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1960.         xmlns:local="clr-namespace:SmallSixUI.App"
  1961.         mc:Ignorable="d"
  1962.         IsShowHeader="True"
  1963.         HeaderBackground="#446180"
  1964.         HeaderHeight="80"
  1965.         Icon="logo.png"
  1966.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1967.     <Grid>
  1968.         
  1969.     </Grid>
  1970. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1971.     <ResourceDictionary.MergedDictionaries>
  1972.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1973.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1974.     </ResourceDictionary.MergedDictionaries>
  1975. </ResourceDictionary></ControlTemplate.Triggers>
  1976. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1977. <Ai:AiWindow x:
  1978.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  1979.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  1980.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  1981.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1982.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  1983.         xmlns:local="clr-namespace:SmallSixUI.App"
  1984.         mc:Ignorable="d"
  1985.         IsShowHeader="True"
  1986.         HeaderBackground="#446180"
  1987.         HeaderHeight="80"
  1988.         Icon="logo.png"
  1989.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  1990.     <Grid>
  1991.         
  1992.     </Grid>
  1993. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  1994.     <ResourceDictionary.MergedDictionaries>
  1995.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  1996.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  1997.     </ResourceDictionary.MergedDictionaries>
  1998. </ResourceDictionary><Ai:AiWindow x:
  1999.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2000.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2001.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2002.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2003.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2004.         xmlns:local="clr-namespace:SmallSixUI.App"
  2005.         mc:Ignorable="d"
  2006.         IsShowHeader="True"
  2007.         HeaderBackground="#446180"
  2008.         HeaderHeight="80"
  2009.         Icon="logo.png"
  2010.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2011.     <Grid>
  2012.         
  2013.     </Grid>
  2014. </Ai:AiWindow>    </ControlTemplate>
  2015. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2016. <Ai:AiWindow x:
  2017.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2018.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2019.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2020.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2021.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2022.         xmlns:local="clr-namespace:SmallSixUI.App"
  2023.         mc:Ignorable="d"
  2024.         IsShowHeader="True"
  2025.         HeaderBackground="#446180"
  2026.         HeaderHeight="80"
  2027.         Icon="logo.png"
  2028.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2029.     <Grid>
  2030.         
  2031.     </Grid>
  2032. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2033.     <ResourceDictionary.MergedDictionaries>
  2034.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2035.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2036.     </ResourceDictionary.MergedDictionaries>
  2037. </ResourceDictionary><Ai:AiWindow x:
  2038.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2039.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2040.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2041.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2042.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2043.         xmlns:local="clr-namespace:SmallSixUI.App"
  2044.         mc:Ignorable="d"
  2045.         IsShowHeader="True"
  2046.         HeaderBackground="#446180"
  2047.         HeaderHeight="80"
  2048.         Icon="logo.png"
  2049.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2050.     <Grid>
  2051.         
  2052.     </Grid>
  2053. </Ai:AiWindow></StackPanel.Resources>
  2054. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2055. <Ai:AiWindow x:
  2056.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2057.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2058.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2059.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2060.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2061.         xmlns:local="clr-namespace:SmallSixUI.App"
  2062.         mc:Ignorable="d"
  2063.         IsShowHeader="True"
  2064.         HeaderBackground="#446180"
  2065.         HeaderHeight="80"
  2066.         Icon="logo.png"
  2067.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2068.     <Grid>
  2069.         
  2070.     </Grid>
  2071. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2072.     <ResourceDictionary.MergedDictionaries>
  2073.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2074.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2075.     </ResourceDictionary.MergedDictionaries>
  2076. </ResourceDictionary><Ai:AiWindow x:
  2077.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2078.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2079.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2080.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2081.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2082.         xmlns:local="clr-namespace:SmallSixUI.App"
  2083.         mc:Ignorable="d"
  2084.         IsShowHeader="True"
  2085.         HeaderBackground="#446180"
  2086.         HeaderHeight="80"
  2087.         Icon="logo.png"
  2088.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2089.     <Grid>
  2090.         
  2091.     </Grid>
  2092. </Ai:AiWindow><Button
  2093. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2094. <Ai:AiWindow x:
  2095.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2096.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2097.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2098.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2099.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2100.         xmlns:local="clr-namespace:SmallSixUI.App"
  2101.         mc:Ignorable="d"
  2102.         IsShowHeader="True"
  2103.         HeaderBackground="#446180"
  2104.         HeaderHeight="80"
  2105.         Icon="logo.png"
  2106.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2107.     <Grid>
  2108.         
  2109.     </Grid>
  2110. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2111.     <ResourceDictionary.MergedDictionaries>
  2112.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2113.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2114.     </ResourceDictionary.MergedDictionaries>
  2115. </ResourceDictionary><Ai:AiWindow x:
  2116.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2117.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2118.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2119.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2120.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2121.         xmlns:local="clr-namespace:SmallSixUI.App"
  2122.         mc:Ignorable="d"
  2123.         IsShowHeader="True"
  2124.         HeaderBackground="#446180"
  2125.         HeaderHeight="80"
  2126.         Icon="logo.png"
  2127.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2128.     <Grid>
  2129.         
  2130.     </Grid>
  2131. </Ai:AiWindow>    x:Name="PART_MinWindowButton"
  2132. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2133. <Ai:AiWindow x:
  2134.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2135.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2136.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2137.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2138.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2139.         xmlns:local="clr-namespace:SmallSixUI.App"
  2140.         mc:Ignorable="d"
  2141.         IsShowHeader="True"
  2142.         HeaderBackground="#446180"
  2143.         HeaderHeight="80"
  2144.         Icon="logo.png"
  2145.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2146.     <Grid>
  2147.         
  2148.     </Grid>
  2149. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2150.     <ResourceDictionary.MergedDictionaries>
  2151.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2152.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2153.     </ResourceDictionary.MergedDictionaries>
  2154. </ResourceDictionary><Ai:AiWindow x:
  2155.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2156.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2157.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2158.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2159.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2160.         xmlns:local="clr-namespace:SmallSixUI.App"
  2161.         mc:Ignorable="d"
  2162.         IsShowHeader="True"
  2163.         HeaderBackground="#446180"
  2164.         HeaderHeight="80"
  2165.         Icon="logo.png"
  2166.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2167.     <Grid>
  2168.         
  2169.     </Grid>
  2170. </Ai:AiWindow>    Width="{Binding RelativeSource={RelativeSource Mode=Self}, Path=ActualHeight}"
  2171. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2172. <Ai:AiWindow x:
  2173.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2174.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2175.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2176.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2177.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2178.         xmlns:local="clr-namespace:SmallSixUI.App"
  2179.         mc:Ignorable="d"
  2180.         IsShowHeader="True"
  2181.         HeaderBackground="#446180"
  2182.         HeaderHeight="80"
  2183.         Icon="logo.png"
  2184.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2185.     <Grid>
  2186.         
  2187.     </Grid>
  2188. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2189.     <ResourceDictionary.MergedDictionaries>
  2190.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2191.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2192.     </ResourceDictionary.MergedDictionaries>
  2193. </ResourceDictionary><Ai:AiWindow x:
  2194.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2195.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2196.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2197.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2198.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2199.         xmlns:local="clr-namespace:SmallSixUI.App"
  2200.         mc:Ignorable="d"
  2201.         IsShowHeader="True"
  2202.         HeaderBackground="#446180"
  2203.         HeaderHeight="80"
  2204.         Icon="logo.png"
  2205.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2206.     <Grid>
  2207.         
  2208.     </Grid>
  2209. </Ai:AiWindow>    Cursor="Hand"
  2210. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2211. <Ai:AiWindow x:
  2212.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2213.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2214.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2215.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2216.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2217.         xmlns:local="clr-namespace:SmallSixUI.App"
  2218.         mc:Ignorable="d"
  2219.         IsShowHeader="True"
  2220.         HeaderBackground="#446180"
  2221.         HeaderHeight="80"
  2222.         Icon="logo.png"
  2223.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2224.     <Grid>
  2225.         
  2226.     </Grid>
  2227. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2228.     <ResourceDictionary.MergedDictionaries>
  2229.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2230.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2231.     </ResourceDictionary.MergedDictionaries>
  2232. </ResourceDictionary><Ai:AiWindow x:
  2233.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2234.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2235.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2236.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2237.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2238.         xmlns:local="clr-namespace:SmallSixUI.App"
  2239.         mc:Ignorable="d"
  2240.         IsShowHeader="True"
  2241.         HeaderBackground="#446180"
  2242.         HeaderHeight="80"
  2243.         Icon="logo.png"
  2244.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2245.     <Grid>
  2246.         
  2247.     </Grid>
  2248. </Ai:AiWindow>    Template="{DynamicResource WindowButtonTemplate}">
  2249. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2250. <Ai:AiWindow x:
  2251.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2252.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2253.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2254.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2255.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2256.         xmlns:local="clr-namespace:SmallSixUI.App"
  2257.         mc:Ignorable="d"
  2258.         IsShowHeader="True"
  2259.         HeaderBackground="#446180"
  2260.         HeaderHeight="80"
  2261.         Icon="logo.png"
  2262.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2263.     <Grid>
  2264.         
  2265.     </Grid>
  2266. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2267.     <ResourceDictionary.MergedDictionaries>
  2268.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2269.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2270.     </ResourceDictionary.MergedDictionaries>
  2271. </ResourceDictionary><Ai:AiWindow x:
  2272.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2273.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2274.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2275.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2276.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2277.         xmlns:local="clr-namespace:SmallSixUI.App"
  2278.         mc:Ignorable="d"
  2279.         IsShowHeader="True"
  2280.         HeaderBackground="#446180"
  2281.         HeaderHeight="80"
  2282.         Icon="logo.png"
  2283.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2284.     <Grid>
  2285.         
  2286.     </Grid>
  2287. </Ai:AiWindow>    <Path
  2288. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2289. <Ai:AiWindow x:
  2290.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2291.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2292.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2293.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2294.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2295.         xmlns:local="clr-namespace:SmallSixUI.App"
  2296.         mc:Ignorable="d"
  2297.         IsShowHeader="True"
  2298.         HeaderBackground="#446180"
  2299.         HeaderHeight="80"
  2300.         Icon="logo.png"
  2301.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2302.     <Grid>
  2303.         
  2304.     </Grid>
  2305. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2306.     <ResourceDictionary.MergedDictionaries>
  2307.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2308.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2309.     </ResourceDictionary.MergedDictionaries>
  2310. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2311. <Ai:AiWindow x:
  2312.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2313.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2314.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2315.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2316.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2317.         xmlns:local="clr-namespace:SmallSixUI.App"
  2318.         mc:Ignorable="d"
  2319.         IsShowHeader="True"
  2320.         HeaderBackground="#446180"
  2321.         HeaderHeight="80"
  2322.         Icon="logo.png"
  2323.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2324.     <Grid>
  2325.         
  2326.     </Grid>
  2327. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2328.     <ResourceDictionary.MergedDictionaries>
  2329.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2330.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2331.     </ResourceDictionary.MergedDictionaries>
  2332. </ResourceDictionary>Width="15"
  2333. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2334. <Ai:AiWindow x:
  2335.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2336.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2337.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2338.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2339.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2340.         xmlns:local="clr-namespace:SmallSixUI.App"
  2341.         mc:Ignorable="d"
  2342.         IsShowHeader="True"
  2343.         HeaderBackground="#446180"
  2344.         HeaderHeight="80"
  2345.         Icon="logo.png"
  2346.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2347.     <Grid>
  2348.         
  2349.     </Grid>
  2350. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2351.     <ResourceDictionary.MergedDictionaries>
  2352.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2353.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2354.     </ResourceDictionary.MergedDictionaries>
  2355. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2356. <Ai:AiWindow x:
  2357.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2358.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2359.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2360.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2361.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2362.         xmlns:local="clr-namespace:SmallSixUI.App"
  2363.         mc:Ignorable="d"
  2364.         IsShowHeader="True"
  2365.         HeaderBackground="#446180"
  2366.         HeaderHeight="80"
  2367.         Icon="logo.png"
  2368.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2369.     <Grid>
  2370.         
  2371.     </Grid>
  2372. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2373.     <ResourceDictionary.MergedDictionaries>
  2374.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2375.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2376.     </ResourceDictionary.MergedDictionaries>
  2377. </ResourceDictionary>Height="2"
  2378. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2379. <Ai:AiWindow x:
  2380.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2381.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2382.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2383.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2384.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2385.         xmlns:local="clr-namespace:SmallSixUI.App"
  2386.         mc:Ignorable="d"
  2387.         IsShowHeader="True"
  2388.         HeaderBackground="#446180"
  2389.         HeaderHeight="80"
  2390.         Icon="logo.png"
  2391.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2392.     <Grid>
  2393.         
  2394.     </Grid>
  2395. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2396.     <ResourceDictionary.MergedDictionaries>
  2397.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2398.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2399.     </ResourceDictionary.MergedDictionaries>
  2400. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2401. <Ai:AiWindow x:
  2402.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2403.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2404.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2405.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2406.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2407.         xmlns:local="clr-namespace:SmallSixUI.App"
  2408.         mc:Ignorable="d"
  2409.         IsShowHeader="True"
  2410.         HeaderBackground="#446180"
  2411.         HeaderHeight="80"
  2412.         Icon="logo.png"
  2413.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2414.     <Grid>
  2415.         
  2416.     </Grid>
  2417. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2418.     <ResourceDictionary.MergedDictionaries>
  2419.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2420.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2421.     </ResourceDictionary.MergedDictionaries>
  2422. </ResourceDictionary>Data="M772.963422 533.491105l-528.06716 0c-12.38297 0-22.514491-10.131521-22.514491-22.514491l0 0c0-12.38297 10.131521-22.514491 22.514491-22.514491l528.06716 0c12.38297 0 22.514491 10.131521 22.514491 22.514491l0 0C795.477913 523.359584 785.346392 533.491105 772.963422 533.491105z"
  2423. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2424. <Ai:AiWindow x:
  2425.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2426.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2427.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2428.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2429.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2430.         xmlns:local="clr-namespace:SmallSixUI.App"
  2431.         mc:Ignorable="d"
  2432.         IsShowHeader="True"
  2433.         HeaderBackground="#446180"
  2434.         HeaderHeight="80"
  2435.         Icon="logo.png"
  2436.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2437.     <Grid>
  2438.         
  2439.     </Grid>
  2440. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2441.     <ResourceDictionary.MergedDictionaries>
  2442.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2443.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2444.     </ResourceDictionary.MergedDictionaries>
  2445. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2446. <Ai:AiWindow x:
  2447.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2448.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2449.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2450.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2451.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2452.         xmlns:local="clr-namespace:SmallSixUI.App"
  2453.         mc:Ignorable="d"
  2454.         IsShowHeader="True"
  2455.         HeaderBackground="#446180"
  2456.         HeaderHeight="80"
  2457.         Icon="logo.png"
  2458.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2459.     <Grid>
  2460.         
  2461.     </Grid>
  2462. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2463.     <ResourceDictionary.MergedDictionaries>
  2464.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2465.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2466.     </ResourceDictionary.MergedDictionaries>
  2467. </ResourceDictionary>Fill="{TemplateBinding HeaderForeground}"
  2468. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2469. <Ai:AiWindow x:
  2470.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2471.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2472.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2473.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2474.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2475.         xmlns:local="clr-namespace:SmallSixUI.App"
  2476.         mc:Ignorable="d"
  2477.         IsShowHeader="True"
  2478.         HeaderBackground="#446180"
  2479.         HeaderHeight="80"
  2480.         Icon="logo.png"
  2481.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2482.     <Grid>
  2483.         
  2484.     </Grid>
  2485. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2486.     <ResourceDictionary.MergedDictionaries>
  2487.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2488.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2489.     </ResourceDictionary.MergedDictionaries>
  2490. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2491. <Ai:AiWindow x:
  2492.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2493.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2494.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2495.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2496.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2497.         xmlns:local="clr-namespace:SmallSixUI.App"
  2498.         mc:Ignorable="d"
  2499.         IsShowHeader="True"
  2500.         HeaderBackground="#446180"
  2501.         HeaderHeight="80"
  2502.         Icon="logo.png"
  2503.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2504.     <Grid>
  2505.         
  2506.     </Grid>
  2507. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2508.     <ResourceDictionary.MergedDictionaries>
  2509.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2510.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2511.     </ResourceDictionary.MergedDictionaries>
  2512. </ResourceDictionary>IsHitTestVisible="false"
  2513. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2514. <Ai:AiWindow x:
  2515.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2516.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2517.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2518.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2519.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2520.         xmlns:local="clr-namespace:SmallSixUI.App"
  2521.         mc:Ignorable="d"
  2522.         IsShowHeader="True"
  2523.         HeaderBackground="#446180"
  2524.         HeaderHeight="80"
  2525.         Icon="logo.png"
  2526.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2527.     <Grid>
  2528.         
  2529.     </Grid>
  2530. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2531.     <ResourceDictionary.MergedDictionaries>
  2532.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2533.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2534.     </ResourceDictionary.MergedDictionaries>
  2535. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2536. <Ai:AiWindow x:
  2537.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2538.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2539.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2540.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2541.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2542.         xmlns:local="clr-namespace:SmallSixUI.App"
  2543.         mc:Ignorable="d"
  2544.         IsShowHeader="True"
  2545.         HeaderBackground="#446180"
  2546.         HeaderHeight="80"
  2547.         Icon="logo.png"
  2548.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2549.     <Grid>
  2550.         
  2551.     </Grid>
  2552. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2553.     <ResourceDictionary.MergedDictionaries>
  2554.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2555.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2556.     </ResourceDictionary.MergedDictionaries>
  2557. </ResourceDictionary>Stretch="Fill" />
  2558. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2559. <Ai:AiWindow x:
  2560.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2561.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2562.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2563.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2564.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2565.         xmlns:local="clr-namespace:SmallSixUI.App"
  2566.         mc:Ignorable="d"
  2567.         IsShowHeader="True"
  2568.         HeaderBackground="#446180"
  2569.         HeaderHeight="80"
  2570.         Icon="logo.png"
  2571.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2572.     <Grid>
  2573.         
  2574.     </Grid>
  2575. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2576.     <ResourceDictionary.MergedDictionaries>
  2577.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2578.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2579.     </ResourceDictionary.MergedDictionaries>
  2580. </ResourceDictionary><Ai:AiWindow x:
  2581.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2582.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2583.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2584.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2585.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2586.         xmlns:local="clr-namespace:SmallSixUI.App"
  2587.         mc:Ignorable="d"
  2588.         IsShowHeader="True"
  2589.         HeaderBackground="#446180"
  2590.         HeaderHeight="80"
  2591.         Icon="logo.png"
  2592.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2593.     <Grid>
  2594.         
  2595.     </Grid>
  2596. </Ai:AiWindow></Button>
  2597. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2598. <Ai:AiWindow x:
  2599.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2600.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2601.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2602.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2603.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2604.         xmlns:local="clr-namespace:SmallSixUI.App"
  2605.         mc:Ignorable="d"
  2606.         IsShowHeader="True"
  2607.         HeaderBackground="#446180"
  2608.         HeaderHeight="80"
  2609.         Icon="logo.png"
  2610.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2611.     <Grid>
  2612.         
  2613.     </Grid>
  2614. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2615.     <ResourceDictionary.MergedDictionaries>
  2616.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2617.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2618.     </ResourceDictionary.MergedDictionaries>
  2619. </ResourceDictionary><Ai:AiWindow x:
  2620.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2621.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2622.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2623.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2624.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2625.         xmlns:local="clr-namespace:SmallSixUI.App"
  2626.         mc:Ignorable="d"
  2627.         IsShowHeader="True"
  2628.         HeaderBackground="#446180"
  2629.         HeaderHeight="80"
  2630.         Icon="logo.png"
  2631.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2632.     <Grid>
  2633.         
  2634.     </Grid>
  2635. </Ai:AiWindow><Button
  2636. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2637. <Ai:AiWindow x:
  2638.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2639.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2640.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2641.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2642.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2643.         xmlns:local="clr-namespace:SmallSixUI.App"
  2644.         mc:Ignorable="d"
  2645.         IsShowHeader="True"
  2646.         HeaderBackground="#446180"
  2647.         HeaderHeight="80"
  2648.         Icon="logo.png"
  2649.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2650.     <Grid>
  2651.         
  2652.     </Grid>
  2653. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2654.     <ResourceDictionary.MergedDictionaries>
  2655.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2656.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2657.     </ResourceDictionary.MergedDictionaries>
  2658. </ResourceDictionary><Ai:AiWindow x:
  2659.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2660.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2661.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2662.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2663.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2664.         xmlns:local="clr-namespace:SmallSixUI.App"
  2665.         mc:Ignorable="d"
  2666.         IsShowHeader="True"
  2667.         HeaderBackground="#446180"
  2668.         HeaderHeight="80"
  2669.         Icon="logo.png"
  2670.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2671.     <Grid>
  2672.         
  2673.     </Grid>
  2674. </Ai:AiWindow>    x:Name="PART_MaxWindowButton"
  2675. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2676. <Ai:AiWindow x:
  2677.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2678.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2679.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2680.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2681.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2682.         xmlns:local="clr-namespace:SmallSixUI.App"
  2683.         mc:Ignorable="d"
  2684.         IsShowHeader="True"
  2685.         HeaderBackground="#446180"
  2686.         HeaderHeight="80"
  2687.         Icon="logo.png"
  2688.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2689.     <Grid>
  2690.         
  2691.     </Grid>
  2692. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2693.     <ResourceDictionary.MergedDictionaries>
  2694.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2695.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2696.     </ResourceDictionary.MergedDictionaries>
  2697. </ResourceDictionary><Ai:AiWindow x:
  2698.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2699.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2700.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2701.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2702.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2703.         xmlns:local="clr-namespace:SmallSixUI.App"
  2704.         mc:Ignorable="d"
  2705.         IsShowHeader="True"
  2706.         HeaderBackground="#446180"
  2707.         HeaderHeight="80"
  2708.         Icon="logo.png"
  2709.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2710.     <Grid>
  2711.         
  2712.     </Grid>
  2713. </Ai:AiWindow>    Width="{Binding RelativeSource={RelativeSource Mode=Self}, Path=ActualHeight}"
  2714. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2715. <Ai:AiWindow x:
  2716.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2717.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2718.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2719.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2720.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2721.         xmlns:local="clr-namespace:SmallSixUI.App"
  2722.         mc:Ignorable="d"
  2723.         IsShowHeader="True"
  2724.         HeaderBackground="#446180"
  2725.         HeaderHeight="80"
  2726.         Icon="logo.png"
  2727.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2728.     <Grid>
  2729.         
  2730.     </Grid>
  2731. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2732.     <ResourceDictionary.MergedDictionaries>
  2733.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2734.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2735.     </ResourceDictionary.MergedDictionaries>
  2736. </ResourceDictionary><Ai:AiWindow x:
  2737.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2738.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2739.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2740.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2741.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2742.         xmlns:local="clr-namespace:SmallSixUI.App"
  2743.         mc:Ignorable="d"
  2744.         IsShowHeader="True"
  2745.         HeaderBackground="#446180"
  2746.         HeaderHeight="80"
  2747.         Icon="logo.png"
  2748.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2749.     <Grid>
  2750.         
  2751.     </Grid>
  2752. </Ai:AiWindow>    Cursor="Hand"
  2753. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2754. <Ai:AiWindow x:
  2755.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2756.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2757.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2758.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2759.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2760.         xmlns:local="clr-namespace:SmallSixUI.App"
  2761.         mc:Ignorable="d"
  2762.         IsShowHeader="True"
  2763.         HeaderBackground="#446180"
  2764.         HeaderHeight="80"
  2765.         Icon="logo.png"
  2766.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2767.     <Grid>
  2768.         
  2769.     </Grid>
  2770. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2771.     <ResourceDictionary.MergedDictionaries>
  2772.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2773.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2774.     </ResourceDictionary.MergedDictionaries>
  2775. </ResourceDictionary><Ai:AiWindow x:
  2776.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2777.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2778.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2779.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2780.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2781.         xmlns:local="clr-namespace:SmallSixUI.App"
  2782.         mc:Ignorable="d"
  2783.         IsShowHeader="True"
  2784.         HeaderBackground="#446180"
  2785.         HeaderHeight="80"
  2786.         Icon="logo.png"
  2787.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2788.     <Grid>
  2789.         
  2790.     </Grid>
  2791. </Ai:AiWindow>    Template="{DynamicResource WindowButtonTemplate}">
  2792. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2793. <Ai:AiWindow x:
  2794.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2795.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2796.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2797.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2798.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2799.         xmlns:local="clr-namespace:SmallSixUI.App"
  2800.         mc:Ignorable="d"
  2801.         IsShowHeader="True"
  2802.         HeaderBackground="#446180"
  2803.         HeaderHeight="80"
  2804.         Icon="logo.png"
  2805.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2806.     <Grid>
  2807.         
  2808.     </Grid>
  2809. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2810.     <ResourceDictionary.MergedDictionaries>
  2811.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2812.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2813.     </ResourceDictionary.MergedDictionaries>
  2814. </ResourceDictionary><Ai:AiWindow x:
  2815.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2816.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2817.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2818.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2819.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2820.         xmlns:local="clr-namespace:SmallSixUI.App"
  2821.         mc:Ignorable="d"
  2822.         IsShowHeader="True"
  2823.         HeaderBackground="#446180"
  2824.         HeaderHeight="80"
  2825.         Icon="logo.png"
  2826.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2827.     <Grid>
  2828.         
  2829.     </Grid>
  2830. </Ai:AiWindow>    <Path
  2831. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2832. <Ai:AiWindow x:
  2833.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2834.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2835.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2836.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2837.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2838.         xmlns:local="clr-namespace:SmallSixUI.App"
  2839.         mc:Ignorable="d"
  2840.         IsShowHeader="True"
  2841.         HeaderBackground="#446180"
  2842.         HeaderHeight="80"
  2843.         Icon="logo.png"
  2844.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2845.     <Grid>
  2846.         
  2847.     </Grid>
  2848. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2849.     <ResourceDictionary.MergedDictionaries>
  2850.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2851.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2852.     </ResourceDictionary.MergedDictionaries>
  2853. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2854. <Ai:AiWindow x:
  2855.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2856.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2857.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2858.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2859.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2860.         xmlns:local="clr-namespace:SmallSixUI.App"
  2861.         mc:Ignorable="d"
  2862.         IsShowHeader="True"
  2863.         HeaderBackground="#446180"
  2864.         HeaderHeight="80"
  2865.         Icon="logo.png"
  2866.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2867.     <Grid>
  2868.         
  2869.     </Grid>
  2870. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2871.     <ResourceDictionary.MergedDictionaries>
  2872.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2873.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2874.     </ResourceDictionary.MergedDictionaries>
  2875. </ResourceDictionary>x:Name="winCnangePath"
  2876. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2877. <Ai:AiWindow x:
  2878.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2879.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2880.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2881.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2882.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2883.         xmlns:local="clr-namespace:SmallSixUI.App"
  2884.         mc:Ignorable="d"
  2885.         IsShowHeader="True"
  2886.         HeaderBackground="#446180"
  2887.         HeaderHeight="80"
  2888.         Icon="logo.png"
  2889.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2890.     <Grid>
  2891.         
  2892.     </Grid>
  2893. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2894.     <ResourceDictionary.MergedDictionaries>
  2895.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2896.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2897.     </ResourceDictionary.MergedDictionaries>
  2898. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2899. <Ai:AiWindow x:
  2900.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2901.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2902.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2903.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2904.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2905.         xmlns:local="clr-namespace:SmallSixUI.App"
  2906.         mc:Ignorable="d"
  2907.         IsShowHeader="True"
  2908.         HeaderBackground="#446180"
  2909.         HeaderHeight="80"
  2910.         Icon="logo.png"
  2911.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2912.     <Grid>
  2913.         
  2914.     </Grid>
  2915. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2916.     <ResourceDictionary.MergedDictionaries>
  2917.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2918.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2919.     </ResourceDictionary.MergedDictionaries>
  2920. </ResourceDictionary>Width="15"
  2921. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2922. <Ai:AiWindow x:
  2923.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2924.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2925.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2926.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2927.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2928.         xmlns:local="clr-namespace:SmallSixUI.App"
  2929.         mc:Ignorable="d"
  2930.         IsShowHeader="True"
  2931.         HeaderBackground="#446180"
  2932.         HeaderHeight="80"
  2933.         Icon="logo.png"
  2934.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2935.     <Grid>
  2936.         
  2937.     </Grid>
  2938. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2939.     <ResourceDictionary.MergedDictionaries>
  2940.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2941.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2942.     </ResourceDictionary.MergedDictionaries>
  2943. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2944. <Ai:AiWindow x:
  2945.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2946.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2947.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2948.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2949.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2950.         xmlns:local="clr-namespace:SmallSixUI.App"
  2951.         mc:Ignorable="d"
  2952.         IsShowHeader="True"
  2953.         HeaderBackground="#446180"
  2954.         HeaderHeight="80"
  2955.         Icon="logo.png"
  2956.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2957.     <Grid>
  2958.         
  2959.     </Grid>
  2960. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2961.     <ResourceDictionary.MergedDictionaries>
  2962.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2963.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2964.     </ResourceDictionary.MergedDictionaries>
  2965. </ResourceDictionary>Height="15"
  2966. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2967. <Ai:AiWindow x:
  2968.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2969.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2970.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2971.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2972.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2973.         xmlns:local="clr-namespace:SmallSixUI.App"
  2974.         mc:Ignorable="d"
  2975.         IsShowHeader="True"
  2976.         HeaderBackground="#446180"
  2977.         HeaderHeight="80"
  2978.         Icon="logo.png"
  2979.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  2980.     <Grid>
  2981.         
  2982.     </Grid>
  2983. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2984.     <ResourceDictionary.MergedDictionaries>
  2985.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  2986.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  2987.     </ResourceDictionary.MergedDictionaries>
  2988. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2989. <Ai:AiWindow x:
  2990.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2991.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2992.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  2993.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2994.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  2995.         xmlns:local="clr-namespace:SmallSixUI.App"
  2996.         mc:Ignorable="d"
  2997.         IsShowHeader="True"
  2998.         HeaderBackground="#446180"
  2999.         HeaderHeight="80"
  3000.         Icon="logo.png"
  3001.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3002.     <Grid>
  3003.         
  3004.     </Grid>
  3005. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3006.     <ResourceDictionary.MergedDictionaries>
  3007.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3008.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3009.     </ResourceDictionary.MergedDictionaries>
  3010. </ResourceDictionary>Data="M10.62,72a9.92,9.92,0,0,1-4-.86A11.15,11.15,0,0,1,.86,65.43,9.92,9.92,0,0,1,0,61.38V25A9.86,9.86,0,0,1,.86,21,11.32,11.32,0,0,1,3.18,17.6a11,11,0,0,1,3.38-2.32,9.68,9.68,0,0,1,4.06-.87H47a9.84,9.84,0,0,1,4.08.87A11,11,0,0,1,56.72,21,9.84,9.84,0,0,1,57.59,25V61.38a9.68,9.68,0,0,1-.87,4.06,11,11,0,0,1-2.32,3.38A11.32,11.32,0,0,1,51,71.14,9.86,9.86,0,0,1,47,72Zm36.17-7.21a3.39,3.39,0,0,0,1.39-.28,3.79,3.79,0,0,0,1.16-.77,3.47,3.47,0,0,0,1.07-2.53v-36a3.55,3.55,0,0,0-.28-1.41,3.51,3.51,0,0,0-.77-1.16,3.67,3.67,0,0,0-1.16-.77,3.55,3.55,0,0,0-1.41-.28h-36a3.45,3.45,0,0,0-1.39.28,3.59,3.59,0,0,0-1.14.79,3.79,3.79,0,0,0-.77,1.16,3.39,3.39,0,0,0-.28,1.39v36a3.45,3.45,0,0,0,.28,1.39A3.62,3.62,0,0,0,9.4,64.51a3.45,3.45,0,0,0,1.39.28Zm18-43.45a13.14,13.14,0,0,0-1.16-5.5,14.41,14.41,0,0,0-3.14-4.5,15,15,0,0,0-4.61-3,14.14,14.14,0,0,0-5.5-1.1H15A10.73,10.73,0,0,1,21.88.51,10.93,10.93,0,0,1,25.21,0H50.38a20.82,20.82,0,0,1,8.4,1.71A21.72,21.72,0,0,1,70.29,13.18,20.91,20.91,0,0,1,72,21.59v25.2a10.93,10.93,0,0,1-.51,3.33A10.71,10.71,0,0,1,70,53.05a10.84,10.84,0,0,1-2.28,2.36,10.66,10.66,0,0,1-3,1.58Z"
  3011. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3012. <Ai:AiWindow x:
  3013.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3014.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3015.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3016.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3017.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3018.         xmlns:local="clr-namespace:SmallSixUI.App"
  3019.         mc:Ignorable="d"
  3020.         IsShowHeader="True"
  3021.         HeaderBackground="#446180"
  3022.         HeaderHeight="80"
  3023.         Icon="logo.png"
  3024.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3025.     <Grid>
  3026.         
  3027.     </Grid>
  3028. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3029.     <ResourceDictionary.MergedDictionaries>
  3030.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3031.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3032.     </ResourceDictionary.MergedDictionaries>
  3033. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3034. <Ai:AiWindow x:
  3035.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3036.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3037.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3038.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3039.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3040.         xmlns:local="clr-namespace:SmallSixUI.App"
  3041.         mc:Ignorable="d"
  3042.         IsShowHeader="True"
  3043.         HeaderBackground="#446180"
  3044.         HeaderHeight="80"
  3045.         Icon="logo.png"
  3046.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3047.     <Grid>
  3048.         
  3049.     </Grid>
  3050. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3051.     <ResourceDictionary.MergedDictionaries>
  3052.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3053.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3054.     </ResourceDictionary.MergedDictionaries>
  3055. </ResourceDictionary>Fill="{TemplateBinding HeaderForeground}"
  3056. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3057. <Ai:AiWindow x:
  3058.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3059.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3060.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3061.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3062.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3063.         xmlns:local="clr-namespace:SmallSixUI.App"
  3064.         mc:Ignorable="d"
  3065.         IsShowHeader="True"
  3066.         HeaderBackground="#446180"
  3067.         HeaderHeight="80"
  3068.         Icon="logo.png"
  3069.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3070.     <Grid>
  3071.         
  3072.     </Grid>
  3073. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3074.     <ResourceDictionary.MergedDictionaries>
  3075.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3076.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3077.     </ResourceDictionary.MergedDictionaries>
  3078. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3079. <Ai:AiWindow x:
  3080.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3081.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3082.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3083.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3084.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3085.         xmlns:local="clr-namespace:SmallSixUI.App"
  3086.         mc:Ignorable="d"
  3087.         IsShowHeader="True"
  3088.         HeaderBackground="#446180"
  3089.         HeaderHeight="80"
  3090.         Icon="logo.png"
  3091.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3092.     <Grid>
  3093.         
  3094.     </Grid>
  3095. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3096.     <ResourceDictionary.MergedDictionaries>
  3097.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3098.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3099.     </ResourceDictionary.MergedDictionaries>
  3100. </ResourceDictionary>IsHitTestVisible="false"
  3101. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3102. <Ai:AiWindow x:
  3103.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3104.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3105.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3106.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3107.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3108.         xmlns:local="clr-namespace:SmallSixUI.App"
  3109.         mc:Ignorable="d"
  3110.         IsShowHeader="True"
  3111.         HeaderBackground="#446180"
  3112.         HeaderHeight="80"
  3113.         Icon="logo.png"
  3114.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3115.     <Grid>
  3116.         
  3117.     </Grid>
  3118. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3119.     <ResourceDictionary.MergedDictionaries>
  3120.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3121.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3122.     </ResourceDictionary.MergedDictionaries>
  3123. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3124. <Ai:AiWindow x:
  3125.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3126.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3127.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3128.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3129.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3130.         xmlns:local="clr-namespace:SmallSixUI.App"
  3131.         mc:Ignorable="d"
  3132.         IsShowHeader="True"
  3133.         HeaderBackground="#446180"
  3134.         HeaderHeight="80"
  3135.         Icon="logo.png"
  3136.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3137.     <Grid>
  3138.         
  3139.     </Grid>
  3140. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3141.     <ResourceDictionary.MergedDictionaries>
  3142.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3143.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3144.     </ResourceDictionary.MergedDictionaries>
  3145. </ResourceDictionary>Stretch="Fill" />
  3146. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3147. <Ai:AiWindow x:
  3148.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3149.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3150.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3151.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3152.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3153.         xmlns:local="clr-namespace:SmallSixUI.App"
  3154.         mc:Ignorable="d"
  3155.         IsShowHeader="True"
  3156.         HeaderBackground="#446180"
  3157.         HeaderHeight="80"
  3158.         Icon="logo.png"
  3159.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3160.     <Grid>
  3161.         
  3162.     </Grid>
  3163. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3164.     <ResourceDictionary.MergedDictionaries>
  3165.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3166.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3167.     </ResourceDictionary.MergedDictionaries>
  3168. </ResourceDictionary><Ai:AiWindow x:
  3169.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3170.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3171.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3172.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3173.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3174.         xmlns:local="clr-namespace:SmallSixUI.App"
  3175.         mc:Ignorable="d"
  3176.         IsShowHeader="True"
  3177.         HeaderBackground="#446180"
  3178.         HeaderHeight="80"
  3179.         Icon="logo.png"
  3180.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3181.     <Grid>
  3182.         
  3183.     </Grid>
  3184. </Ai:AiWindow></Button>
  3185. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3186. <Ai:AiWindow x:
  3187.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3188.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3189.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3190.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3191.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3192.         xmlns:local="clr-namespace:SmallSixUI.App"
  3193.         mc:Ignorable="d"
  3194.         IsShowHeader="True"
  3195.         HeaderBackground="#446180"
  3196.         HeaderHeight="80"
  3197.         Icon="logo.png"
  3198.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3199.     <Grid>
  3200.         
  3201.     </Grid>
  3202. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3203.     <ResourceDictionary.MergedDictionaries>
  3204.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3205.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3206.     </ResourceDictionary.MergedDictionaries>
  3207. </ResourceDictionary><Ai:AiWindow x:
  3208.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3209.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3210.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3211.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3212.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3213.         xmlns:local="clr-namespace:SmallSixUI.App"
  3214.         mc:Ignorable="d"
  3215.         IsShowHeader="True"
  3216.         HeaderBackground="#446180"
  3217.         HeaderHeight="80"
  3218.         Icon="logo.png"
  3219.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3220.     <Grid>
  3221.         
  3222.     </Grid>
  3223. </Ai:AiWindow><Button
  3224. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3225. <Ai:AiWindow x:
  3226.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3227.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3228.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3229.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3230.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3231.         xmlns:local="clr-namespace:SmallSixUI.App"
  3232.         mc:Ignorable="d"
  3233.         IsShowHeader="True"
  3234.         HeaderBackground="#446180"
  3235.         HeaderHeight="80"
  3236.         Icon="logo.png"
  3237.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3238.     <Grid>
  3239.         
  3240.     </Grid>
  3241. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3242.     <ResourceDictionary.MergedDictionaries>
  3243.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3244.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3245.     </ResourceDictionary.MergedDictionaries>
  3246. </ResourceDictionary><Ai:AiWindow x:
  3247.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3248.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3249.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3250.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3251.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3252.         xmlns:local="clr-namespace:SmallSixUI.App"
  3253.         mc:Ignorable="d"
  3254.         IsShowHeader="True"
  3255.         HeaderBackground="#446180"
  3256.         HeaderHeight="80"
  3257.         Icon="logo.png"
  3258.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3259.     <Grid>
  3260.         
  3261.     </Grid>
  3262. </Ai:AiWindow>    x:Name="PART_CloseWindowButton"
  3263. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3264. <Ai:AiWindow x:
  3265.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3266.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3267.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3268.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3269.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3270.         xmlns:local="clr-namespace:SmallSixUI.App"
  3271.         mc:Ignorable="d"
  3272.         IsShowHeader="True"
  3273.         HeaderBackground="#446180"
  3274.         HeaderHeight="80"
  3275.         Icon="logo.png"
  3276.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3277.     <Grid>
  3278.         
  3279.     </Grid>
  3280. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3281.     <ResourceDictionary.MergedDictionaries>
  3282.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3283.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3284.     </ResourceDictionary.MergedDictionaries>
  3285. </ResourceDictionary><Ai:AiWindow x:
  3286.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3287.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3288.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3289.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3290.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3291.         xmlns:local="clr-namespace:SmallSixUI.App"
  3292.         mc:Ignorable="d"
  3293.         IsShowHeader="True"
  3294.         HeaderBackground="#446180"
  3295.         HeaderHeight="80"
  3296.         Icon="logo.png"
  3297.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3298.     <Grid>
  3299.         
  3300.     </Grid>
  3301. </Ai:AiWindow>    Width="{Binding RelativeSource={RelativeSource Mode=Self}, Path=ActualHeight}"
  3302. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3303. <Ai:AiWindow x:
  3304.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3305.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3306.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3307.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3308.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3309.         xmlns:local="clr-namespace:SmallSixUI.App"
  3310.         mc:Ignorable="d"
  3311.         IsShowHeader="True"
  3312.         HeaderBackground="#446180"
  3313.         HeaderHeight="80"
  3314.         Icon="logo.png"
  3315.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3316.     <Grid>
  3317.         
  3318.     </Grid>
  3319. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3320.     <ResourceDictionary.MergedDictionaries>
  3321.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3322.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3323.     </ResourceDictionary.MergedDictionaries>
  3324. </ResourceDictionary><Ai:AiWindow x:
  3325.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3326.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3327.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3328.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3329.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3330.         xmlns:local="clr-namespace:SmallSixUI.App"
  3331.         mc:Ignorable="d"
  3332.         IsShowHeader="True"
  3333.         HeaderBackground="#446180"
  3334.         HeaderHeight="80"
  3335.         Icon="logo.png"
  3336.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3337.     <Grid>
  3338.         
  3339.     </Grid>
  3340. </Ai:AiWindow>    Cursor="Hand"
  3341. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3342. <Ai:AiWindow x:
  3343.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3344.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3345.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3346.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3347.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3348.         xmlns:local="clr-namespace:SmallSixUI.App"
  3349.         mc:Ignorable="d"
  3350.         IsShowHeader="True"
  3351.         HeaderBackground="#446180"
  3352.         HeaderHeight="80"
  3353.         Icon="logo.png"
  3354.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3355.     <Grid>
  3356.         
  3357.     </Grid>
  3358. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3359.     <ResourceDictionary.MergedDictionaries>
  3360.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3361.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3362.     </ResourceDictionary.MergedDictionaries>
  3363. </ResourceDictionary><Ai:AiWindow x:
  3364.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3365.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3366.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3367.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3368.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3369.         xmlns:local="clr-namespace:SmallSixUI.App"
  3370.         mc:Ignorable="d"
  3371.         IsShowHeader="True"
  3372.         HeaderBackground="#446180"
  3373.         HeaderHeight="80"
  3374.         Icon="logo.png"
  3375.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3376.     <Grid>
  3377.         
  3378.     </Grid>
  3379. </Ai:AiWindow>    Template="{DynamicResource WindowButtonTemplate}">
  3380. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3381. <Ai:AiWindow x:
  3382.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3383.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3384.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3385.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3386.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3387.         xmlns:local="clr-namespace:SmallSixUI.App"
  3388.         mc:Ignorable="d"
  3389.         IsShowHeader="True"
  3390.         HeaderBackground="#446180"
  3391.         HeaderHeight="80"
  3392.         Icon="logo.png"
  3393.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3394.     <Grid>
  3395.         
  3396.     </Grid>
  3397. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3398.     <ResourceDictionary.MergedDictionaries>
  3399.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3400.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3401.     </ResourceDictionary.MergedDictionaries>
  3402. </ResourceDictionary><Ai:AiWindow x:
  3403.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3404.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3405.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3406.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3407.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3408.         xmlns:local="clr-namespace:SmallSixUI.App"
  3409.         mc:Ignorable="d"
  3410.         IsShowHeader="True"
  3411.         HeaderBackground="#446180"
  3412.         HeaderHeight="80"
  3413.         Icon="logo.png"
  3414.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3415.     <Grid>
  3416.         
  3417.     </Grid>
  3418. </Ai:AiWindow>    <Path
  3419. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3420. <Ai:AiWindow x:
  3421.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3422.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3423.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3424.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3425.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3426.         xmlns:local="clr-namespace:SmallSixUI.App"
  3427.         mc:Ignorable="d"
  3428.         IsShowHeader="True"
  3429.         HeaderBackground="#446180"
  3430.         HeaderHeight="80"
  3431.         Icon="logo.png"
  3432.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3433.     <Grid>
  3434.         
  3435.     </Grid>
  3436. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3437.     <ResourceDictionary.MergedDictionaries>
  3438.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3439.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3440.     </ResourceDictionary.MergedDictionaries>
  3441. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3442. <Ai:AiWindow x:
  3443.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3444.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3445.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3446.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3447.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3448.         xmlns:local="clr-namespace:SmallSixUI.App"
  3449.         mc:Ignorable="d"
  3450.         IsShowHeader="True"
  3451.         HeaderBackground="#446180"
  3452.         HeaderHeight="80"
  3453.         Icon="logo.png"
  3454.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3455.     <Grid>
  3456.         
  3457.     </Grid>
  3458. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3459.     <ResourceDictionary.MergedDictionaries>
  3460.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3461.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3462.     </ResourceDictionary.MergedDictionaries>
  3463. </ResourceDictionary>Width="15"
  3464. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3465. <Ai:AiWindow x:
  3466.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3467.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3468.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3469.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3470.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3471.         xmlns:local="clr-namespace:SmallSixUI.App"
  3472.         mc:Ignorable="d"
  3473.         IsShowHeader="True"
  3474.         HeaderBackground="#446180"
  3475.         HeaderHeight="80"
  3476.         Icon="logo.png"
  3477.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3478.     <Grid>
  3479.         
  3480.     </Grid>
  3481. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3482.     <ResourceDictionary.MergedDictionaries>
  3483.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3484.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3485.     </ResourceDictionary.MergedDictionaries>
  3486. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3487. <Ai:AiWindow x:
  3488.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3489.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3490.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3491.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3492.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3493.         xmlns:local="clr-namespace:SmallSixUI.App"
  3494.         mc:Ignorable="d"
  3495.         IsShowHeader="True"
  3496.         HeaderBackground="#446180"
  3497.         HeaderHeight="80"
  3498.         Icon="logo.png"
  3499.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3500.     <Grid>
  3501.         
  3502.     </Grid>
  3503. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3504.     <ResourceDictionary.MergedDictionaries>
  3505.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3506.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3507.     </ResourceDictionary.MergedDictionaries>
  3508. </ResourceDictionary>Height="15"
  3509. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3510. <Ai:AiWindow x:
  3511.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3512.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3513.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3514.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3515.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3516.         xmlns:local="clr-namespace:SmallSixUI.App"
  3517.         mc:Ignorable="d"
  3518.         IsShowHeader="True"
  3519.         HeaderBackground="#446180"
  3520.         HeaderHeight="80"
  3521.         Icon="logo.png"
  3522.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3523.     <Grid>
  3524.         
  3525.     </Grid>
  3526. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3527.     <ResourceDictionary.MergedDictionaries>
  3528.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3529.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3530.     </ResourceDictionary.MergedDictionaries>
  3531. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3532. <Ai:AiWindow x:
  3533.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3534.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3535.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3536.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3537.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3538.         xmlns:local="clr-namespace:SmallSixUI.App"
  3539.         mc:Ignorable="d"
  3540.         IsShowHeader="True"
  3541.         HeaderBackground="#446180"
  3542.         HeaderHeight="80"
  3543.         Icon="logo.png"
  3544.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3545.     <Grid>
  3546.         
  3547.     </Grid>
  3548. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3549.     <ResourceDictionary.MergedDictionaries>
  3550.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3551.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3552.     </ResourceDictionary.MergedDictionaries>
  3553. </ResourceDictionary>Data="M550.848 502.496l308.64-308.896a31.968 31.968 0 1 0-45.248-45.248l-308.608 308.896-308.64-308.928a31.968 31.968 0 1 0-45.248 45.248l308.64 308.896-308.64 308.896a31.968 31.968 0 1 0 45.248 45.248l308.64-308.896 308.608 308.896a31.968 31.968 0 1 0 45.248-45.248l-308.64-308.864z"
  3554. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3555. <Ai:AiWindow x:
  3556.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3557.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3558.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3559.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3560.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3561.         xmlns:local="clr-namespace:SmallSixUI.App"
  3562.         mc:Ignorable="d"
  3563.         IsShowHeader="True"
  3564.         HeaderBackground="#446180"
  3565.         HeaderHeight="80"
  3566.         Icon="logo.png"
  3567.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3568.     <Grid>
  3569.         
  3570.     </Grid>
  3571. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3572.     <ResourceDictionary.MergedDictionaries>
  3573.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3574.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3575.     </ResourceDictionary.MergedDictionaries>
  3576. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3577. <Ai:AiWindow x:
  3578.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3579.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3580.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3581.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3582.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3583.         xmlns:local="clr-namespace:SmallSixUI.App"
  3584.         mc:Ignorable="d"
  3585.         IsShowHeader="True"
  3586.         HeaderBackground="#446180"
  3587.         HeaderHeight="80"
  3588.         Icon="logo.png"
  3589.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3590.     <Grid>
  3591.         
  3592.     </Grid>
  3593. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3594.     <ResourceDictionary.MergedDictionaries>
  3595.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3596.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3597.     </ResourceDictionary.MergedDictionaries>
  3598. </ResourceDictionary>Fill="{TemplateBinding HeaderForeground}"
  3599. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3600. <Ai:AiWindow x:
  3601.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3602.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3603.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3604.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3605.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3606.         xmlns:local="clr-namespace:SmallSixUI.App"
  3607.         mc:Ignorable="d"
  3608.         IsShowHeader="True"
  3609.         HeaderBackground="#446180"
  3610.         HeaderHeight="80"
  3611.         Icon="logo.png"
  3612.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3613.     <Grid>
  3614.         
  3615.     </Grid>
  3616. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3617.     <ResourceDictionary.MergedDictionaries>
  3618.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3619.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3620.     </ResourceDictionary.MergedDictionaries>
  3621. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3622. <Ai:AiWindow x:
  3623.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3624.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3625.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3626.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3627.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3628.         xmlns:local="clr-namespace:SmallSixUI.App"
  3629.         mc:Ignorable="d"
  3630.         IsShowHeader="True"
  3631.         HeaderBackground="#446180"
  3632.         HeaderHeight="80"
  3633.         Icon="logo.png"
  3634.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3635.     <Grid>
  3636.         
  3637.     </Grid>
  3638. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3639.     <ResourceDictionary.MergedDictionaries>
  3640.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3641.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3642.     </ResourceDictionary.MergedDictionaries>
  3643. </ResourceDictionary>IsHitTestVisible="false"
  3644. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3645. <Ai:AiWindow x:
  3646.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3647.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3648.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3649.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3650.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3651.         xmlns:local="clr-namespace:SmallSixUI.App"
  3652.         mc:Ignorable="d"
  3653.         IsShowHeader="True"
  3654.         HeaderBackground="#446180"
  3655.         HeaderHeight="80"
  3656.         Icon="logo.png"
  3657.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3658.     <Grid>
  3659.         
  3660.     </Grid>
  3661. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3662.     <ResourceDictionary.MergedDictionaries>
  3663.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3664.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3665.     </ResourceDictionary.MergedDictionaries>
  3666. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3667. <Ai:AiWindow x:
  3668.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3669.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3670.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3671.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3672.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3673.         xmlns:local="clr-namespace:SmallSixUI.App"
  3674.         mc:Ignorable="d"
  3675.         IsShowHeader="True"
  3676.         HeaderBackground="#446180"
  3677.         HeaderHeight="80"
  3678.         Icon="logo.png"
  3679.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3680.     <Grid>
  3681.         
  3682.     </Grid>
  3683. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3684.     <ResourceDictionary.MergedDictionaries>
  3685.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3686.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3687.     </ResourceDictionary.MergedDictionaries>
  3688. </ResourceDictionary>Stretch="Fill" />
  3689. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3690. <Ai:AiWindow x:
  3691.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3692.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3693.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3694.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3695.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3696.         xmlns:local="clr-namespace:SmallSixUI.App"
  3697.         mc:Ignorable="d"
  3698.         IsShowHeader="True"
  3699.         HeaderBackground="#446180"
  3700.         HeaderHeight="80"
  3701.         Icon="logo.png"
  3702.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3703.     <Grid>
  3704.         
  3705.     </Grid>
  3706. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3707.     <ResourceDictionary.MergedDictionaries>
  3708.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3709.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3710.     </ResourceDictionary.MergedDictionaries>
  3711. </ResourceDictionary><Ai:AiWindow x:
  3712.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3713.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3714.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3715.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3716.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3717.         xmlns:local="clr-namespace:SmallSixUI.App"
  3718.         mc:Ignorable="d"
  3719.         IsShowHeader="True"
  3720.         HeaderBackground="#446180"
  3721.         HeaderHeight="80"
  3722.         Icon="logo.png"
  3723.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3724.     <Grid>
  3725.         
  3726.     </Grid>
  3727. </Ai:AiWindow></Button>
  3728. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3729. <Ai:AiWindow x:
  3730.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3731.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3732.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3733.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3734.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3735.         xmlns:local="clr-namespace:SmallSixUI.App"
  3736.         mc:Ignorable="d"
  3737.         IsShowHeader="True"
  3738.         HeaderBackground="#446180"
  3739.         HeaderHeight="80"
  3740.         Icon="logo.png"
  3741.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3742.     <Grid>
  3743.         
  3744.     </Grid>
  3745. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3746.     <ResourceDictionary.MergedDictionaries>
  3747.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3748.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3749.     </ResourceDictionary.MergedDictionaries>
  3750. </ResourceDictionary>            </StackPanel>
  3751. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3752. <Ai:AiWindow x:
  3753.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3754.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3755.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3756.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3757.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3758.         xmlns:local="clr-namespace:SmallSixUI.App"
  3759.         mc:Ignorable="d"
  3760.         IsShowHeader="True"
  3761.         HeaderBackground="#446180"
  3762.         HeaderHeight="80"
  3763.         Icon="logo.png"
  3764.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3765.     <Grid>
  3766.         
  3767.     </Grid>
  3768. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3769.     <ResourceDictionary.MergedDictionaries>
  3770.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3771.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3772.     </ResourceDictionary.MergedDictionaries>
  3773. </ResourceDictionary>        </Grid>
  3774. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3775. <Ai:AiWindow x:
  3776.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3777.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3778.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3779.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3780.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3781.         xmlns:local="clr-namespace:SmallSixUI.App"
  3782.         mc:Ignorable="d"
  3783.         IsShowHeader="True"
  3784.         HeaderBackground="#446180"
  3785.         HeaderHeight="80"
  3786.         Icon="logo.png"
  3787.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3788.     <Grid>
  3789.         
  3790.     </Grid>
  3791. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3792.     <ResourceDictionary.MergedDictionaries>
  3793.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3794.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3795.     </ResourceDictionary.MergedDictionaries>
  3796. </ResourceDictionary>        <Grid Grid.Row="1" ClipToBounds="True">
  3797. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3798. <Ai:AiWindow x:
  3799.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3800.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3801.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3802.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3803.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3804.         xmlns:local="clr-namespace:SmallSixUI.App"
  3805.         mc:Ignorable="d"
  3806.         IsShowHeader="True"
  3807.         HeaderBackground="#446180"
  3808.         HeaderHeight="80"
  3809.         Icon="logo.png"
  3810.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3811.     <Grid>
  3812.         
  3813.     </Grid>
  3814. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3815.     <ResourceDictionary.MergedDictionaries>
  3816.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3817.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3818.     </ResourceDictionary.MergedDictionaries>
  3819. </ResourceDictionary>            <ContentPresenter />
  3820. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3821. <Ai:AiWindow x:
  3822.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3823.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3824.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3825.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3826.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3827.         xmlns:local="clr-namespace:SmallSixUI.App"
  3828.         mc:Ignorable="d"
  3829.         IsShowHeader="True"
  3830.         HeaderBackground="#446180"
  3831.         HeaderHeight="80"
  3832.         Icon="logo.png"
  3833.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3834.     <Grid>
  3835.         
  3836.     </Grid>
  3837. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3838.     <ResourceDictionary.MergedDictionaries>
  3839.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3840.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3841.     </ResourceDictionary.MergedDictionaries>
  3842. </ResourceDictionary>        </Grid>
  3843. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3844. <Ai:AiWindow x:
  3845.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3846.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3847.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3848.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3849.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3850.         xmlns:local="clr-namespace:SmallSixUI.App"
  3851.         mc:Ignorable="d"
  3852.         IsShowHeader="True"
  3853.         HeaderBackground="#446180"
  3854.         HeaderHeight="80"
  3855.         Icon="logo.png"
  3856.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3857.     <Grid>
  3858.         
  3859.     </Grid>
  3860. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3861.     <ResourceDictionary.MergedDictionaries>
  3862.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3863.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3864.     </ResourceDictionary.MergedDictionaries>
  3865. </ResourceDictionary>    </Grid>
  3866. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3867. <Ai:AiWindow x:
  3868.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3869.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3870.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3871.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3872.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3873.         xmlns:local="clr-namespace:SmallSixUI.App"
  3874.         mc:Ignorable="d"
  3875.         IsShowHeader="True"
  3876.         HeaderBackground="#446180"
  3877.         HeaderHeight="80"
  3878.         Icon="logo.png"
  3879.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3880.     <Grid>
  3881.         
  3882.     </Grid>
  3883. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3884.     <ResourceDictionary.MergedDictionaries>
  3885.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3886.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3887.     </ResourceDictionary.MergedDictionaries>
  3888. </ResourceDictionary></Ai:AiTransition>
  3889. <Ai:AiWindow x:
  3890.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3891.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3892.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3893.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3894.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3895.         xmlns:local="clr-namespace:SmallSixUI.App"
  3896.         mc:Ignorable="d"
  3897.         IsShowHeader="True"
  3898.         HeaderBackground="#446180"
  3899.         HeaderHeight="80"
  3900.         Icon="logo.png"
  3901.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3902.     <Grid>
  3903.         
  3904.     </Grid>
  3905. </Ai:AiWindow>    </Border>
  3906. <Ai:AiWindow x:
  3907.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3908.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3909.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3910.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3911.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3912.         xmlns:local="clr-namespace:SmallSixUI.App"
  3913.         mc:Ignorable="d"
  3914.         IsShowHeader="True"
  3915.         HeaderBackground="#446180"
  3916.         HeaderHeight="80"
  3917.         Icon="logo.png"
  3918.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3919.     <Grid>
  3920.         
  3921.     </Grid>
  3922. </Ai:AiWindow>    <ControlTemplate.Triggers>
  3923. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3924. <Ai:AiWindow x:
  3925.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3926.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3927.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3928.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3929.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3930.         xmlns:local="clr-namespace:SmallSixUI.App"
  3931.         mc:Ignorable="d"
  3932.         IsShowHeader="True"
  3933.         HeaderBackground="#446180"
  3934.         HeaderHeight="80"
  3935.         Icon="logo.png"
  3936.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3937.     <Grid>
  3938.         
  3939.     </Grid>
  3940. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3941.     <ResourceDictionary.MergedDictionaries>
  3942.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3943.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3944.     </ResourceDictionary.MergedDictionaries>
  3945. </ResourceDictionary><Trigger Property="WindowState" Value="Normal">
  3946. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3947. <Ai:AiWindow x:
  3948.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3949.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3950.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3951.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3952.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3953.         xmlns:local="clr-namespace:SmallSixUI.App"
  3954.         mc:Ignorable="d"
  3955.         IsShowHeader="True"
  3956.         HeaderBackground="#446180"
  3957.         HeaderHeight="80"
  3958.         Icon="logo.png"
  3959.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3960.     <Grid>
  3961.         
  3962.     </Grid>
  3963. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3964.     <ResourceDictionary.MergedDictionaries>
  3965.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3966.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3967.     </ResourceDictionary.MergedDictionaries>
  3968. </ResourceDictionary>    <Setter TargetName="winCnangePath" Property="Data" Value="M10.62,72a9.92,9.92,0,0,1-4-.86A11.15,11.15,0,0,1,.86,65.43,9.92,9.92,0,0,1,0,61.38V10.62a9.92,9.92,0,0,1,.86-4A11.15,11.15,0,0,1,6.57.86a9.92,9.92,0,0,1,4-.86H61.38a9.92,9.92,0,0,1,4.05.86,11.15,11.15,0,0,1,5.71,5.71,9.92,9.92,0,0,1,.86,4V61.38a9.92,9.92,0,0,1-.86,4.05,11.15,11.15,0,0,1-5.71,5.71,9.92,9.92,0,0,1-4.05.86Zm50.59-7.21a3.45,3.45,0,0,0,1.39-.28,3.62,3.62,0,0,0,1.91-1.91,3.45,3.45,0,0,0,.28-1.39V10.79a3.45,3.45,0,0,0-.28-1.39A3.62,3.62,0,0,0,62.6,7.49a3.45,3.45,0,0,0-1.39-.28H10.79a3.45,3.45,0,0,0-1.39.28A3.62,3.62,0,0,0,7.49,9.4a3.45,3.45,0,0,0-.28,1.39V61.21a3.45,3.45,0,0,0,.28,1.39A3.62,3.62,0,0,0,9.4,64.51a3.45,3.45,0,0,0,1.39.28Z" />
  3969. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3970. <Ai:AiWindow x:
  3971.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3972.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3973.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3974.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3975.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3976.         xmlns:local="clr-namespace:SmallSixUI.App"
  3977.         mc:Ignorable="d"
  3978.         IsShowHeader="True"
  3979.         HeaderBackground="#446180"
  3980.         HeaderHeight="80"
  3981.         Icon="logo.png"
  3982.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  3983.     <Grid>
  3984.         
  3985.     </Grid>
  3986. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3987.     <ResourceDictionary.MergedDictionaries>
  3988.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  3989.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  3990.     </ResourceDictionary.MergedDictionaries>
  3991. </ResourceDictionary></Trigger>
  3992. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3993. <Ai:AiWindow x:
  3994.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3995.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3996.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  3997.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  3998.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  3999.         xmlns:local="clr-namespace:SmallSixUI.App"
  4000.         mc:Ignorable="d"
  4001.         IsShowHeader="True"
  4002.         HeaderBackground="#446180"
  4003.         HeaderHeight="80"
  4004.         Icon="logo.png"
  4005.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4006.     <Grid>
  4007.         
  4008.     </Grid>
  4009. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4010.     <ResourceDictionary.MergedDictionaries>
  4011.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4012.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4013.     </ResourceDictionary.MergedDictionaries>
  4014. </ResourceDictionary><Trigger Property="IsShowHeader" Value="false">
  4015. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4016. <Ai:AiWindow x:
  4017.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4018.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4019.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4020.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4021.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4022.         xmlns:local="clr-namespace:SmallSixUI.App"
  4023.         mc:Ignorable="d"
  4024.         IsShowHeader="True"
  4025.         HeaderBackground="#446180"
  4026.         HeaderHeight="80"
  4027.         Icon="logo.png"
  4028.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4029.     <Grid>
  4030.         
  4031.     </Grid>
  4032. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4033.     <ResourceDictionary.MergedDictionaries>
  4034.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4035.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4036.     </ResourceDictionary.MergedDictionaries>
  4037. </ResourceDictionary>    <Setter TargetName="PART_Header" Property="Visibility" Value="Collapsed" />
  4038. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4039. <Ai:AiWindow x:
  4040.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4041.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4042.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4043.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4044.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4045.         xmlns:local="clr-namespace:SmallSixUI.App"
  4046.         mc:Ignorable="d"
  4047.         IsShowHeader="True"
  4048.         HeaderBackground="#446180"
  4049.         HeaderHeight="80"
  4050.         Icon="logo.png"
  4051.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4052.     <Grid>
  4053.         
  4054.     </Grid>
  4055. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4056.     <ResourceDictionary.MergedDictionaries>
  4057.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4058.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4059.     </ResourceDictionary.MergedDictionaries>
  4060. </ResourceDictionary></Trigger>
  4061. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4062. <Ai:AiWindow x:
  4063.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4064.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4065.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4066.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4067.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4068.         xmlns:local="clr-namespace:SmallSixUI.App"
  4069.         mc:Ignorable="d"
  4070.         IsShowHeader="True"
  4071.         HeaderBackground="#446180"
  4072.         HeaderHeight="80"
  4073.         Icon="logo.png"
  4074.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4075.     <Grid>
  4076.         
  4077.     </Grid>
  4078. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4079.     <ResourceDictionary.MergedDictionaries>
  4080.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4081.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4082.     </ResourceDictionary.MergedDictionaries>
  4083. </ResourceDictionary><Trigger Property="ResizeMode" Value="NoResize">
  4084. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4085. <Ai:AiWindow x:
  4086.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4087.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4088.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4089.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4090.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4091.         xmlns:local="clr-namespace:SmallSixUI.App"
  4092.         mc:Ignorable="d"
  4093.         IsShowHeader="True"
  4094.         HeaderBackground="#446180"
  4095.         HeaderHeight="80"
  4096.         Icon="logo.png"
  4097.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4098.     <Grid>
  4099.         
  4100.     </Grid>
  4101. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4102.     <ResourceDictionary.MergedDictionaries>
  4103.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4104.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4105.     </ResourceDictionary.MergedDictionaries>
  4106. </ResourceDictionary>    <Setter TargetName="PART_MaxWindowButton" Property="Visibility" Value="Collapsed" />
  4107. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4108. <Ai:AiWindow x:
  4109.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4110.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4111.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4112.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4113.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4114.         xmlns:local="clr-namespace:SmallSixUI.App"
  4115.         mc:Ignorable="d"
  4116.         IsShowHeader="True"
  4117.         HeaderBackground="#446180"
  4118.         HeaderHeight="80"
  4119.         Icon="logo.png"
  4120.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4121.     <Grid>
  4122.         
  4123.     </Grid>
  4124. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4125.     <ResourceDictionary.MergedDictionaries>
  4126.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4127.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4128.     </ResourceDictionary.MergedDictionaries>
  4129. </ResourceDictionary></Trigger>
  4130. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4131. <Ai:AiWindow x:
  4132.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4133.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4134.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4135.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4136.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4137.         xmlns:local="clr-namespace:SmallSixUI.App"
  4138.         mc:Ignorable="d"
  4139.         IsShowHeader="True"
  4140.         HeaderBackground="#446180"
  4141.         HeaderHeight="80"
  4142.         Icon="logo.png"
  4143.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4144.     <Grid>
  4145.         
  4146.     </Grid>
  4147. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4148.     <ResourceDictionary.MergedDictionaries>
  4149.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4150.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4151.     </ResourceDictionary.MergedDictionaries>
  4152. </ResourceDictionary><Trigger Property="Icon" Value="{x:Null}">
  4153. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4154. <Ai:AiWindow x:
  4155.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4156.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4157.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4158.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4159.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4160.         xmlns:local="clr-namespace:SmallSixUI.App"
  4161.         mc:Ignorable="d"
  4162.         IsShowHeader="True"
  4163.         HeaderBackground="#446180"
  4164.         HeaderHeight="80"
  4165.         Icon="logo.png"
  4166.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4167.     <Grid>
  4168.         
  4169.     </Grid>
  4170. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4171.     <ResourceDictionary.MergedDictionaries>
  4172.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4173.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4174.     </ResourceDictionary.MergedDictionaries>
  4175. </ResourceDictionary>    <Setter TargetName="Icon" Property="Visibility" Value="Collapsed" />
  4176. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4177. <Ai:AiWindow x:
  4178.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4179.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4180.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4181.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4182.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4183.         xmlns:local="clr-namespace:SmallSixUI.App"
  4184.         mc:Ignorable="d"
  4185.         IsShowHeader="True"
  4186.         HeaderBackground="#446180"
  4187.         HeaderHeight="80"
  4188.         Icon="logo.png"
  4189.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4190.     <Grid>
  4191.         
  4192.     </Grid>
  4193. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4194.     <ResourceDictionary.MergedDictionaries>
  4195.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4196.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4197.     </ResourceDictionary.MergedDictionaries>
  4198. </ResourceDictionary></Trigger>
  4199. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4200. <Ai:AiWindow x:
  4201.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4202.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4203.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4204.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4205.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4206.         xmlns:local="clr-namespace:SmallSixUI.App"
  4207.         mc:Ignorable="d"
  4208.         IsShowHeader="True"
  4209.         HeaderBackground="#446180"
  4210.         HeaderHeight="80"
  4211.         Icon="logo.png"
  4212.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4213.     <Grid>
  4214.         
  4215.     </Grid>
  4216. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4217.     <ResourceDictionary.MergedDictionaries>
  4218.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4219.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4220.     </ResourceDictionary.MergedDictionaries>
  4221. </ResourceDictionary><Trigger SourceName="HeaderText" Property="Text" Value="">
  4222. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4223. <Ai:AiWindow x:
  4224.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4225.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4226.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4227.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4228.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4229.         xmlns:local="clr-namespace:SmallSixUI.App"
  4230.         mc:Ignorable="d"
  4231.         IsShowHeader="True"
  4232.         HeaderBackground="#446180"
  4233.         HeaderHeight="80"
  4234.         Icon="logo.png"
  4235.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4236.     <Grid>
  4237.         
  4238.     </Grid>
  4239. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4240.     <ResourceDictionary.MergedDictionaries>
  4241.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4242.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4243.     </ResourceDictionary.MergedDictionaries>
  4244. </ResourceDictionary>    <Setter TargetName="HeaderText" Property="Visibility" Value="Collapsed" />
  4245. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4246. <Ai:AiWindow x:
  4247.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4248.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4249.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4250.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4251.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4252.         xmlns:local="clr-namespace:SmallSixUI.App"
  4253.         mc:Ignorable="d"
  4254.         IsShowHeader="True"
  4255.         HeaderBackground="#446180"
  4256.         HeaderHeight="80"
  4257.         Icon="logo.png"
  4258.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4259.     <Grid>
  4260.         
  4261.     </Grid>
  4262. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4263.     <ResourceDictionary.MergedDictionaries>
  4264.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4265.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4266.     </ResourceDictionary.MergedDictionaries>
  4267. </ResourceDictionary></Trigger>
  4268. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4269. <Ai:AiWindow x:
  4270.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4271.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4272.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4273.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4274.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4275.         xmlns:local="clr-namespace:SmallSixUI.App"
  4276.         mc:Ignorable="d"
  4277.         IsShowHeader="True"
  4278.         HeaderBackground="#446180"
  4279.         HeaderHeight="80"
  4280.         Icon="logo.png"
  4281.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4282.     <Grid>
  4283.         
  4284.     </Grid>
  4285. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4286.     <ResourceDictionary.MergedDictionaries>
  4287.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4288.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4289.     </ResourceDictionary.MergedDictionaries>
  4290. </ResourceDictionary><Trigger SourceName="HeaderText" Property="Text" Value="{x:Null}">
  4291. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4292. <Ai:AiWindow x:
  4293.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4294.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4295.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4296.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4297.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4298.         xmlns:local="clr-namespace:SmallSixUI.App"
  4299.         mc:Ignorable="d"
  4300.         IsShowHeader="True"
  4301.         HeaderBackground="#446180"
  4302.         HeaderHeight="80"
  4303.         Icon="logo.png"
  4304.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4305.     <Grid>
  4306.         
  4307.     </Grid>
  4308. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4309.     <ResourceDictionary.MergedDictionaries>
  4310.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4311.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4312.     </ResourceDictionary.MergedDictionaries>
  4313. </ResourceDictionary>    <Setter TargetName="HeaderText" Property="Visibility" Value="Collapsed" />
  4314. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4315. <Ai:AiWindow x:
  4316.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4317.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4318.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4319.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4320.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4321.         xmlns:local="clr-namespace:SmallSixUI.App"
  4322.         mc:Ignorable="d"
  4323.         IsShowHeader="True"
  4324.         HeaderBackground="#446180"
  4325.         HeaderHeight="80"
  4326.         Icon="logo.png"
  4327.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4328.     <Grid>
  4329.         
  4330.     </Grid>
  4331. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4332.     <ResourceDictionary.MergedDictionaries>
  4333.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  4334.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  4335.     </ResourceDictionary.MergedDictionaries>
  4336. </ResourceDictionary></Trigger>
  4337. <Ai:AiWindow x:
  4338.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4339.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4340.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4341.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4342.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4343.         xmlns:local="clr-namespace:SmallSixUI.App"
  4344.         mc:Ignorable="d"
  4345.         IsShowHeader="True"
  4346.         HeaderBackground="#446180"
  4347.         HeaderHeight="80"
  4348.         Icon="logo.png"
  4349.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4350.     <Grid>
  4351.         
  4352.     </Grid>
  4353. </Ai:AiWindow>    </ControlTemplate.Triggers>
  4354. <Ai:AiWindow x:
  4355.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4356.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4357.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4358.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  4359.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  4360.         xmlns:local="clr-namespace:SmallSixUI.App"
  4361.         mc:Ignorable="d"
  4362.         IsShowHeader="True"
  4363.         HeaderBackground="#446180"
  4364.         HeaderHeight="80"
  4365.         Icon="logo.png"
  4366.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  4367.     <Grid>
  4368.         
  4369.     </Grid>
  4370. </Ai:AiWindow></ControlTemplate>
  4371.             </Setter.Value>
  4372.         </Setter>
  4373.     </Style>
  4374. </ResourceDictionary>
复制代码
 
4. 创建默认主题

 
在Themes文件夹中,创建主题资源文件【Generic.xaml】,并在主题资源文件中,引用上述创建的样式资源,如下所示:
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. <Ai:AiWindow x:
  3.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  8.         xmlns:local="clr-namespace:SmallSixUI.App"
  9.         mc:Ignorable="d"
  10.         IsShowHeader="True"
  11.         HeaderBackground="#446180"
  12.         HeaderHeight="80"
  13.         Icon="logo.png"
  14.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  15.     <Grid>
  16.         
  17.     </Grid>
  18. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  19.     <ResourceDictionary.MergedDictionaries>
  20.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  21.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  22.     </ResourceDictionary.MergedDictionaries>
  23. </ResourceDictionary>
复制代码
主题:主题资源文件,是为了整合一组资源样式,来形成一套主题。同一主题之内,风格统一;不同主题之间相互独立,风格迥异
 
应用自定义控件库

 
1. 创建应用程序

 
在解决方案中,创建WPF应用程序【SmallSixUI.App】,并引用控件库【SmallSixUI.Templates】,如下所示:

 
2. 引入主题资源

 
在应用程序的启动类App.xaml中,引入主题资源文件,如下所示:
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. <Ai:AiWindow x:
  3.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  8.         xmlns:local="clr-namespace:SmallSixUI.App"
  9.         mc:Ignorable="d"
  10.         IsShowHeader="True"
  11.         HeaderBackground="#446180"
  12.         HeaderHeight="80"
  13.         Icon="logo.png"
  14.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  15.     <Grid>
  16.         
  17.     </Grid>
  18. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  19.     <ResourceDictionary.MergedDictionaries>
  20.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  21.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  22.     </ResourceDictionary.MergedDictionaries>
  23. </ResourceDictionary><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  24. <Ai:AiWindow x:
  25.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  26.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  27.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  28.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  29.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  30.         xmlns:local="clr-namespace:SmallSixUI.App"
  31.         mc:Ignorable="d"
  32.         IsShowHeader="True"
  33.         HeaderBackground="#446180"
  34.         HeaderHeight="80"
  35.         Icon="logo.png"
  36.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  37.     <Grid>
  38.         
  39.     </Grid>
  40. </Ai:AiWindow>    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  41.     <ResourceDictionary.MergedDictionaries>
  42.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiWindowStyle.xaml"></ResourceDictionary>
  43.         <ResourceDictionary Source="pack://application:,,,/SmallSixUI.Templates;component/Styles/AiTransitionStyle.xaml"></ResourceDictionary>
  44.     </ResourceDictionary.MergedDictionaries>
  45. </ResourceDictionary><Ai:AiWindow x:
  46.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  47.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  48.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  49.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  50.         xmlns:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  51.         xmlns:local="clr-namespace:SmallSixUI.App"
  52.         mc:Ignorable="d"
  53.         IsShowHeader="True"
  54.         HeaderBackground="#446180"
  55.         HeaderHeight="80"
  56.         Icon="logo.png"
  57.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  58.     <Grid>
  59.         
  60.     </Grid>
  61. </Ai:AiWindow>
复制代码
 
3. 创建测试窗口

 
在应用程序中,创建测试窗口【SmallSixWindow.xaml】,添加控件库命名控件【Ai】,并修改窗口的继承类为【AiWindow】,然后设置窗口的背景色,logo,标题等,如下所示:
SmallSixWindow.xaml文件中,如下所示:
  1. <Ai:AiWindow x:
  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:Ai="clr-namespace:SmallSixUI.Templates.Controls;assembly=SmallSixUI.Templates"
  7.         xmlns:local="clr-namespace:SmallSixUI.App"
  8.         mc:Ignorable="d"
  9.         IsShowHeader="True"
  10.         HeaderBackground="#446180"
  11.         HeaderHeight="80"
  12.         Icon="logo.png"
  13.         Title="小六公子的UI设计窗口" Height="450" Width="800">
  14.     <Grid>
  15.         
  16.     </Grid>
  17. </Ai:AiWindow>
复制代码
 SmallSixWindow.xaml.cs中修改继承类,如下所示:
  1. using SmallSixUI.Templates.Controls;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Shapes;
  15. namespace SmallSixUI.App
  16. {
  17.     /// <summary>
  18.     /// XWindow.xaml 的交互逻辑
  19.     /// </summary>
  20.     public partial class SmallSixWindow : AiWindow
  21.     {
  22.         public SmallSixWindow()
  23.         {
  24.             InitializeComponent();
  25.         }
  26.     }
  27. }
复制代码
 
运行程序

 
通过Visual Studio运行程序,如下所示:
普通默认窗口,如下所示:

自定义窗口
应用自定义样式的窗口,如下所示:

以上就是WPF自定义控件库之窗口的全部内容。希望可以抛砖引玉,一起学习,共同进步。

来源:https://www.cnblogs.com/hsiang/archive/2023/10/30/17796792.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具