优化界面

20260122
zhaojian 3 years ago
parent 5657265016
commit 13a4741496

Binary file not shown.

@ -12,7 +12,7 @@
<!--设备编码-->
<add key="DeviceCode" value="C3" />
<!--上位机类型 0:工单准备1成型机\shoupei2烘房-->
<add key="ClientMode" value="2" />
<add key="ClientMode" value="0" />
<add key="SerialPort" value="COM5" />
<add key="DryingHouseList" value="H14" />
@ -30,7 +30,7 @@
<!--FormBoardthrift端口-->
<add key="FormBoardThriftPort" value="7931" />
<!--物料同步接口地址-->
<add key="WCSMaterialSyncAddress" value="http://192.168.202.28:9001/api/v1/ReceiveMesMsg/materialPlanSync"/>
<add key="WCSMaterialSyncAddress" value="http://192.168.202.28:9001/api/v1/ReceiveMesMsg/materialPlanSync" />
</appSettings>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />

@ -10,6 +10,7 @@
Width="1920"
Height="1080"
Closed="Close"
xmlns:hc="https://handyorg.github.io/handycontrol"
WindowStartupLocation="CenterScreen"
WindowState="Maximized"
WindowStyle="None"
@ -17,7 +18,10 @@
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<hc:ThemeResources />
<hc:Theme />
<ResourceDictionary Source="/CSS/SearchBtnClass.xaml" />
<ResourceDictionary Source="/CSS/SearchTextClass.xaml" />
<ResourceDictionary Source="/CSS/DataGridClass.xaml" />
@ -93,6 +97,7 @@
</Setter.Value>
</Setter>
</Style>
<!--<Style TargetType="{x:Type TextBox}" x:Key="DefaultTextBox">
<Setter Property="FontSize" Value="20" />
<Setter Property="Background" Value="Transparent" />
@ -379,8 +384,8 @@
VerticalAlignment="Center"
FontSize="20"
Text="设备状态:" />
<Border CornerRadius="50" Width="40" Height="35" Background="{Binding ElementName=LbDeviceState,Path=Content, Converter={StaticResource ButtonContentToBackgroundColorConverter}}">
<Label Name="LbDeviceState" Content="Hi" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="White" FontWeight="Bold"/>
<Border CornerRadius="50" Width="45" Height="40" Background="{Binding ElementName=LbDeviceState,Path=Content, Converter={StaticResource ButtonContentToBackgroundColorConverter}}">
<Label Name="LbDeviceState" BorderThickness="0" Content="Hi" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="White" Background="Transparent" FontWeight="Bold"/>
</Border>
<!--<Label x:Name="LbDeviceState" Style="{StaticResource RoundButton}"
Background="{Binding RelativeSource={RelativeSource Mode=Self},Path=Content, Converter={StaticResource ButtonContentToBackgroundColorConverter}}"></Label>
@ -442,16 +447,16 @@
Margin="0,0,0,0"
Source="/Resources/logo.png" />
</StackPanel>
<StackPanel Width="1720" Orientation="Horizontal">
<StackPanel Width="1720" Orientation="Horizontal" >
<Label
Width="300"
Width="350"
Height="55"
Margin="100,0,0,0"
Content="榄菊生产操作系统"
FontSize="36"
FontWeight="Bold"
Foreground="White"/>
Foreground="White" BorderThickness="0" Background="Transparent" />
<Image
Width="40"
Height="40" Margin="500,0,0,0"
@ -461,7 +466,7 @@
Height="49"
Content="2023-08-30"
FontSize="30"
Foreground="White" VerticalAlignment="Bottom" />
Foreground="White" VerticalAlignment="Bottom" BorderThickness="0" Background="Transparent" />
<Image
Width="40"
@ -472,7 +477,7 @@
Height="49"
Content="14:53:50"
FontSize="30"
Foreground="White" />
Foreground="White" BorderThickness="0" Background="Transparent"/>
<StackPanel.Background>
<ImageBrush ImageSource="..\Resources\topblank.png"></ImageBrush>
</StackPanel.Background>
@ -539,7 +544,7 @@
HorizontalAlignment="Left"
Content="网络状态"
FontSize="20px"
Foreground="Black" VerticalContentAlignment="Center"/>
Foreground="Black" BorderThickness="0" VerticalContentAlignment="Center"/>
<TextBlock x:Name="myTb" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="20" Margin="0 0 10 0"
Width="120" Foreground="{Binding PingSeconds,Converter={StaticResource colorconvert}}" >
<Run Foreground="white" Text="{DynamicResource 延迟}"></Run>
@ -553,7 +558,7 @@
HorizontalAlignment="Left"
Content="版本:"
FontSize="20px"
Foreground="Black" VerticalContentAlignment="Center"/>
Foreground="Black" BorderThickness="0" VerticalContentAlignment="Center"/>
<Label
x:Name="lbVersion"
Width="150"
@ -561,7 +566,7 @@
HorizontalAlignment="Left"
Content="20231001001"
FontSize="20px"
Foreground="Blue" FontStretch="Condensed" VerticalContentAlignment="Center"/>
Foreground="Blue" BorderThickness="0" FontStretch="Condensed" VerticalContentAlignment="Center"/>
</StackPanel>
<Button BorderThickness="1" BorderBrush="CornflowerBlue" Visibility="Visible" Background="Transparent" FontSize="26" Height="40" Width="50" HorizontalAlignment="Left" x:Name="notsos" Margin="900,4,0,2" ToolTip="关闭报警" Click="notsos_Click" >

@ -4,13 +4,24 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:hc="https://handyorg.github.io/handycontrol"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:loadin="clr-namespace:LoadingIndicators.WPF;assembly=LoadingIndicators.WPF"
Title="Login" Height="500" Width="350" ResizeMode="NoResize" WindowStyle="None"
xmlns:customControlLibrary1="clr-namespace:WpfCustomControlLibrary1;assembly=WpfCustomControlLibrary1"
WindowStartupLocation="CenterScreen" MouseLeftButtonDown="Window_MouseLeftButtonDown" Loaded="Window_Loaded">
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<hc:ThemeResources />
<hc:Theme />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>
<Grid>
<Rectangle Height="280" VerticalAlignment="Top">
<Rectangle.Fill>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF2281D1"></GradientStop>
@ -20,7 +31,7 @@
</Rectangle.Fill>
</Rectangle>
<!--<Image Source="Images/home.png" Width="100" Height="100" VerticalAlignment="Top" Margin="20"></Image>-->
<Label Foreground="White" FontSize="30" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,10,0,0">
<Label Foreground="White" FontSize="30" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,10,0,0" Width="160" Height="60" Background="Transparent" BorderThickness="0">
<Label.Content>
<Image Source="/Resources/logo.png" Width="160" Height="50"/>
</Label.Content>
@ -41,16 +52,16 @@
</Grid>
<Button VerticalAlignment="Bottom" Background="#0454D7" IsDefault="True" BorderBrush="Transparent" x:Name="btnlogin" Margin="68,0,182,85" Width="100" Height="30" Content="登录" Click="btnlogin_Click"></Button>
<Button VerticalAlignment="Bottom" Background="#D7D7D7" Foreground="Black" BorderBrush="Transparent" x:Name="btnloginout" Margin="192,0,58,85" Width="100" Height="30" Content="退出" Click="btnloginout_Click" ></Button>
<CheckBox x:Name="rememberpwd" VerticalAlignment="Bottom" Background="#F6FBD9" Margin="48,0,0,126" Width="100" HorizontalAlignment="Left"
<CheckBox x:Name="rememberpwd" VerticalAlignment="Bottom" Background="Black" Margin="48,0,0,126" Width="100" HorizontalAlignment="Left"
IsChecked="True">
记住密码
</CheckBox>
<Label Width="100" Height="30" VerticalContentAlignment="Center"/>
<!--<Label Width="100" Height="30" VerticalContentAlignment="Center"/>-->
<!--<loadin:LoadingIndicator x:Name="dldh" Margin="156,434,154,26" SpeedRatio="1.5" IsActive="True" Style="{DynamicResource LoadingIndicatorArcsStyle}">
</loadin:LoadingIndicator>-->
<customControlLibrary1:CustomControl1 x:Name="dldh" Margin="156,434,154,26" Width="50" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<Label x:Name="zzdl" HorizontalAlignment="Center" Margin="115,476,100,0" Content="正在登陆" Foreground="#0454D7"></Label>
<customControlLibrary1:CustomControl1 x:Name="dldh" Margin="159,424,140,20" Width="60" Height="50" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<Label x:Name="zzdl" HorizontalAlignment="Center" Margin="115,476,100,0" Content="正在登陆" Foreground="#0454D7" BorderThickness="0"></Label>
<!--<TextBlock Text="ESQUECEU SUA SENHA?" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="50" Foreground="Gray" Cursor="Hand"></TextBlock>-->
<Label x:Name="lbVersion" Width="100" Content="1.000" Height="30" VerticalContentAlignment="Center" Margin="263,470,-13,0"/>
<Label x:Name="lbVersion" Width="100" Content="1.000" Height="30" VerticalContentAlignment="Center" BorderThickness="0" Margin="263,470,13,0"/>
</Grid>
</Window>

@ -6,11 +6,16 @@
xmlns:local="clr-namespace:XGL.Views"
xmlns:convert="clr-namespace:XGL.Tools"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:hc="https://handyorg.github.io/handycontrol"
Width="1920" xmlns:localDate="clr-namespace:XGL.Tools"
Height="800"
mc:Ignorable="d" Loaded="UserControl_Loaded">
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<hc:ThemeResources />
<hc:Theme />
</ResourceDictionary.MergedDictionaries>
<Style x:Key="RoundButton" TargetType="Button">
<Setter Property="Width" Value="25" />
<Setter Property="Height" Value="25" />
@ -87,7 +92,7 @@
<Style x:Key="CustomCellStyle" TargetType="DataGridCell">
<Setter Property="Foreground" Value="Black" />
<Setter Property="TextBlock.TextAlignment" Value="Center" />
<Setter Property="TextBlock.FontSize" Value="22" />
<Setter Property="TextBlock.FontSize" Value="22" />
</Style>
<convert:MyValueConverter x:Key="MyConverter"/>
<convert:SyncFlagConverter x:Key="SyncFlagConverter"/>
@ -137,7 +142,7 @@
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
</ResourceDictionary>
</UserControl.Resources>
<Viewbox Stretch="Fill">
@ -160,7 +165,7 @@
<RowDefinition Height="*" />
<RowDefinition Height="350" />
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" Grid.Row="0" Grid.Column="0" VerticalAlignment="Center">
<Label
@ -168,20 +173,22 @@
Grid.Column="0"
Width="175"
Height="37"
Margin="26,5,0,0"
Margin="26,0,0,0"
HorizontalAlignment="Left">
<TextBlock
FontSize="22"
FontWeight="Bold"
Text="准备清单" VerticalAlignment="Center"/>
</Label>
<Label Content="请选择日期:" VerticalContentAlignment="Center" FontSize="18" Margin="20" VerticalAlignment="Center"></Label>
<Label Content="请选择日期:" VerticalContentAlignment="Center" FontSize="16" Margin="20,0,0,0" VerticalAlignment="Center" Width="106" BorderThickness="0" Background="Transparent"
Height="38"
></Label>
<localDate:UserDatePicker x:Name="dateStart" FontSize="18" VerticalAlignment="Center" AlternativeCalendarStyle="{StaticResource calendarWithGotToTodayStyle}"
Width="150" SelectedDateFormat="Short" IsTodayHighlighted="True" VerticalContentAlignment="Center">
</localDate:UserDatePicker>
<Button x:Name="btnRefresh" Content="查询" Grid.Row="0" Margin="20,0,0,0"
Grid.Column="1" Style="{StaticResource CustomButtonStyle}" Click="btnRefresh_Click"></Button>
<Button x:Name="btnRefresh" Content="查询" Grid.Row="0" Margin="20,0,0,0" Width="105" Height="30"
Grid.Column="1" Background="#2F82E7" Click="btnRefresh_Click"></Button>
<!--<Button x:Name="btnQueryLog" Content="查询" Foreground="White" Margin="20,0,0,0" FontSize="18" Background="#2B7EE6" Width="100" Height="30" Click="btnRefresh_Click"/>-->
</StackPanel>
@ -217,7 +224,7 @@
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<DataGridTextColumn Width="300" Header="工单" Binding="{Binding workorder_code}"/>
<DataGridTextColumn Width="300" Header="产品编码" Binding="{Binding product_code}"/>
<DataGridTextColumn Width="300" Header="产品名称" Binding="{Binding product_name}"/>
@ -226,7 +233,7 @@
<DataGridTextColumn Width="200" Header="物料规格" Binding="{Binding product_spc}"/>
<DataGridTextColumn Width="80" Header="数量" Binding="{Binding quantity}" />
</DataGrid.Columns>
<!--<DataGrid.Columns>
<DataGridTextColumn Width="300" Header="序号" />
@ -239,8 +246,8 @@
<Button Grid.Row="1" Grid.Column="1" Width="250" Height="250" Click="btnStartOrders_Click">
<Button.Template>
<ControlTemplate>
<Image Margin="0,0,0,0" Source="/Resources/startOrder.png" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"/>
</ControlTemplate>
<Image Margin="0,0,0,0" Source="/Resources/startOrder.png" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"/>
</ControlTemplate>
</Button.Template>
</Button>
@ -272,7 +279,7 @@
FontWeight="Bold"
Text="工单" />
</Label>
</StackPanel>
<!--<Button x:Name="btnRefresh" Content="刷新" Grid.Row="0"
Grid.Column="1" Style="{StaticResource CustomButtonStyle}" Click="btnRefresh_Click"></Button>-->
@ -281,8 +288,8 @@
HorizontalScrollBarVisibility="Auto"
VerticalScrollBarVisibility="Auto">-->
<!-- Foreground="Black" FontWeight="Bold"-->
<DataGrid
<!-- Foreground="Black" FontWeight="Bold"-->
<DataGrid
x:Name="WorkOrder"
Grid.Row="3"
Grid.Column="0"
@ -300,24 +307,24 @@
SelectionChanged="WorkOrder_SelectionChanged"
FrozenColumnCount="1"
FontSize="24" CanUserAddRows="False">
<DataGrid.ColumnHeaderStyle>
<Style TargetType="DataGridColumnHeader">
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="Height" Value="48" />
<Setter Property="FontSize" Value="16" />
<Setter Property="Foreground" Value="White" />
<Setter Property="Background" Value="#2B7EE6" />
</Style>
</DataGrid.ColumnHeaderStyle>
<DataGrid.Columns>
<DataGridTemplateColumn Header=" 序号" Width="80" MinWidth="10" IsReadOnly="True">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<DataGrid.ColumnHeaderStyle>
<Style TargetType="DataGridColumnHeader">
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="Height" Value="48" />
<Setter Property="FontSize" Value="16" />
<Setter Property="Foreground" Value="White" />
<Setter Property="Background" Value="#2B7EE6" />
</Style>
</DataGrid.ColumnHeaderStyle>
<DataGrid.Columns>
<DataGridTemplateColumn Header=" 序号" Width="80" MinWidth="10" IsReadOnly="True">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type DataGridRow}}, Path=Header}" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10,0,0,0"></TextBlock>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<!--<DataGridTextColumn
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<!--<DataGridTextColumn
Width="250"
Binding="{Binding WorkOrderCode}"
Header="工单编码" />
@ -364,73 +371,73 @@
Binding="{Binding workorder_id}"
Header="订单编码" />
<DataGridTextColumn Visibility="Visible"
<DataGridTextColumn Visibility="Visible"
Width="250"
Binding="{Binding workorder_code}"
Header="订单码" />
<DataGridTextColumn
<DataGridTextColumn
Width="150"
Binding="{Binding product_name}"
Header="产品名称" />
<DataGridTextColumn
<DataGridTextColumn
Width="200"
Binding="{Binding material_code}"
Header="产品型号" />
<DataGridTextColumn
<DataGridTextColumn
Width="80"
Binding="{Binding bucket_code}"
Header="料罐编码" />
<DataGridTextColumn
<DataGridTextColumn
Width="1350"
Binding="{Binding prod_line_code}"
Header="设备" />
<DataGridTextColumn
Width="200"
Binding="{Binding plan_time, StringFormat={}{0:yyyy-MM-dd HH:mm:ss}}"
Header="工单时间" />
<DataGridTextColumn
<DataGridTextColumn
Width="250"
Binding="{Binding id}"
Header="计划编码" />
<DataGridTemplateColumn Width="350" Header="操作">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<StackPanel
<DataGridTemplateColumn Width="350" Header="操作">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<StackPanel
HorizontalAlignment="Left"
VerticalAlignment="Center"
Orientation="Horizontal">
<Button
<Button
x:Name="Flow_Click"
Width="90"
Height="30"
Margin="15,0,0,0"
Background="#4294C6"
Content="查看工艺" Click="Flow_Click"/>
<Button
<Button
x:Name="SOP_Click"
Width="90"
Height="30"
Margin="25,0,0,0"
Background="#4294C6"
Content="查看SOP" Click="SOP_Click"/>
<Button
<Button
x:Name="Material_Click"
Width="90"
Height="30"
Margin="25,0,0,0"
Background="#4294C6"
Content="查看物料" Click="Material_Click"/>
</StackPanel>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</StackPanel>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>
</DataGrid.Columns>
</DataGrid>
<!--</ScrollViewer>-->
</Grid>

@ -87,6 +87,9 @@
<Reference Include="Google.Protobuf, Version=3.5.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
<HintPath>..\packages\Google.Protobuf.3.5.1\lib\net45\Google.Protobuf.dll</HintPath>
</Reference>
<Reference Include="HandyControl, Version=3.4.0.0, Culture=neutral, PublicKeyToken=45be8712787a1e5b, processorArchitecture=MSIL">
<HintPath>..\packages\HandyControls.3.4.5\lib\net48\HandyControl.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.SharpZipLib, Version=1.3.3.11, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<HintPath>..\packages\SharpZipLib.1.3.3\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath>
</Reference>

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\FormItem\Main.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E38DC8F69DCC9829AAB04D5A881B058BA816B655E361D925290D51D85F8B778A"
#pragma checksum "..\..\..\..\FormItem\Main.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "A68BDECC8164DB2A31900F9DC30AC953FBDCF2F1F5D314E3033AA8D13E2770CE"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -9,6 +9,18 @@
// </auto-generated>
//------------------------------------------------------------------------------
using HandyControl.Controls;
using HandyControl.Data;
using HandyControl.Expression.Media;
using HandyControl.Expression.Shapes;
using HandyControl.Interactivity;
using HandyControl.Media.Animation;
using HandyControl.Media.Effects;
using HandyControl.Properties.Langs;
using HandyControl.Themes;
using HandyControl.Tools;
using HandyControl.Tools.Converter;
using HandyControl.Tools.Extension;
using System;
using System.Diagnostics;
using System.Windows;
@ -43,7 +55,7 @@ namespace XGL.FormItem {
public partial class Main : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 238 "..\..\..\..\FormItem\Main.xaml"
#line 243 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.StackPanel UpperStart1;
@ -51,7 +63,7 @@ namespace XGL.FormItem {
#line hidden
#line 272 "..\..\..\..\FormItem\Main.xaml"
#line 277 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock tbFactory;
@ -59,7 +71,7 @@ namespace XGL.FormItem {
#line hidden
#line 293 "..\..\..\..\FormItem\Main.xaml"
#line 298 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock tbLineCode;
@ -67,7 +79,7 @@ namespace XGL.FormItem {
#line hidden
#line 352 "..\..\..\..\FormItem\Main.xaml"
#line 357 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock shebei;
@ -75,7 +87,7 @@ namespace XGL.FormItem {
#line hidden
#line 359 "..\..\..\..\FormItem\Main.xaml"
#line 364 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock tbDevice;
@ -83,7 +95,7 @@ namespace XGL.FormItem {
#line hidden
#line 383 "..\..\..\..\FormItem\Main.xaml"
#line 388 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label LbDeviceState;
@ -91,7 +103,7 @@ namespace XGL.FormItem {
#line hidden
#line 413 "..\..\..\..\FormItem\Main.xaml"
#line 418 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock tbOperator;
@ -99,7 +111,7 @@ namespace XGL.FormItem {
#line hidden
#line 424 "..\..\..\..\FormItem\Main.xaml"
#line 429 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid UpperStart2;
@ -107,7 +119,7 @@ namespace XGL.FormItem {
#line hidden
#line 431 "..\..\..\..\FormItem\Main.xaml"
#line 436 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ContentControl Index;
@ -115,7 +127,7 @@ namespace XGL.FormItem {
#line hidden
#line 460 "..\..\..\..\FormItem\Main.xaml"
#line 465 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label LabDate;
@ -123,7 +135,7 @@ namespace XGL.FormItem {
#line hidden
#line 471 "..\..\..\..\FormItem\Main.xaml"
#line 476 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label LabTime;
@ -131,7 +143,7 @@ namespace XGL.FormItem {
#line hidden
#line 521 "..\..\..\..\FormItem\Main.xaml"
#line 526 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.StackPanel DownStart;
@ -139,7 +151,7 @@ namespace XGL.FormItem {
#line hidden
#line 543 "..\..\..\..\FormItem\Main.xaml"
#line 548 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock myTb;
@ -147,7 +159,7 @@ namespace XGL.FormItem {
#line hidden
#line 546 "..\..\..\..\FormItem\Main.xaml"
#line 551 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Documents.Run btnText;
@ -155,7 +167,7 @@ namespace XGL.FormItem {
#line hidden
#line 558 "..\..\..\..\FormItem\Main.xaml"
#line 563 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label lbVersion;
@ -163,7 +175,7 @@ namespace XGL.FormItem {
#line hidden
#line 567 "..\..\..\..\FormItem\Main.xaml"
#line 572 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button notsos;
@ -171,7 +183,7 @@ namespace XGL.FormItem {
#line hidden
#line 570 "..\..\..\..\FormItem\Main.xaml"
#line 575 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnZXH;
@ -179,7 +191,7 @@ namespace XGL.FormItem {
#line hidden
#line 574 "..\..\..\..\FormItem\Main.xaml"
#line 579 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnFault;
@ -224,7 +236,7 @@ namespace XGL.FormItem {
#line default
#line hidden
#line 16 "..\..\..\..\FormItem\Main.xaml"
#line 17 "..\..\..\..\FormItem\Main.xaml"
((XGL.FormItem.Main)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
#line default
@ -278,7 +290,7 @@ namespace XGL.FormItem {
case 17:
this.notsos = ((System.Windows.Controls.Button)(target));
#line 567 "..\..\..\..\FormItem\Main.xaml"
#line 572 "..\..\..\..\FormItem\Main.xaml"
this.notsos.Click += new System.Windows.RoutedEventHandler(this.notsos_Click);
#line default
@ -287,7 +299,7 @@ namespace XGL.FormItem {
case 18:
this.btnZXH = ((System.Windows.Controls.Button)(target));
#line 570 "..\..\..\..\FormItem\Main.xaml"
#line 575 "..\..\..\..\FormItem\Main.xaml"
this.btnZXH.Click += new System.Windows.RoutedEventHandler(this.btnZXH_Click);
#line default
@ -296,7 +308,7 @@ namespace XGL.FormItem {
case 19:
this.btnFault = ((System.Windows.Controls.Button)(target));
#line 579 "..\..\..\..\FormItem\Main.xaml"
#line 584 "..\..\..\..\FormItem\Main.xaml"
this.btnFault.Click += new System.Windows.RoutedEventHandler(this.btnExit_Click);
#line default

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\FormItem\Main.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E38DC8F69DCC9829AAB04D5A881B058BA816B655E361D925290D51D85F8B778A"
#pragma checksum "..\..\..\..\FormItem\Main.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "A68BDECC8164DB2A31900F9DC30AC953FBDCF2F1F5D314E3033AA8D13E2770CE"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -9,6 +9,18 @@
// </auto-generated>
//------------------------------------------------------------------------------
using HandyControl.Controls;
using HandyControl.Data;
using HandyControl.Expression.Media;
using HandyControl.Expression.Shapes;
using HandyControl.Interactivity;
using HandyControl.Media.Animation;
using HandyControl.Media.Effects;
using HandyControl.Properties.Langs;
using HandyControl.Themes;
using HandyControl.Tools;
using HandyControl.Tools.Converter;
using HandyControl.Tools.Extension;
using System;
using System.Diagnostics;
using System.Windows;
@ -43,7 +55,7 @@ namespace XGL.FormItem {
public partial class Main : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 238 "..\..\..\..\FormItem\Main.xaml"
#line 243 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.StackPanel UpperStart1;
@ -51,7 +63,7 @@ namespace XGL.FormItem {
#line hidden
#line 272 "..\..\..\..\FormItem\Main.xaml"
#line 277 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock tbFactory;
@ -59,7 +71,7 @@ namespace XGL.FormItem {
#line hidden
#line 293 "..\..\..\..\FormItem\Main.xaml"
#line 298 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock tbLineCode;
@ -67,7 +79,7 @@ namespace XGL.FormItem {
#line hidden
#line 352 "..\..\..\..\FormItem\Main.xaml"
#line 357 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock shebei;
@ -75,7 +87,7 @@ namespace XGL.FormItem {
#line hidden
#line 359 "..\..\..\..\FormItem\Main.xaml"
#line 364 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock tbDevice;
@ -83,7 +95,7 @@ namespace XGL.FormItem {
#line hidden
#line 383 "..\..\..\..\FormItem\Main.xaml"
#line 388 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label LbDeviceState;
@ -91,7 +103,7 @@ namespace XGL.FormItem {
#line hidden
#line 413 "..\..\..\..\FormItem\Main.xaml"
#line 418 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock tbOperator;
@ -99,7 +111,7 @@ namespace XGL.FormItem {
#line hidden
#line 424 "..\..\..\..\FormItem\Main.xaml"
#line 429 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid UpperStart2;
@ -107,7 +119,7 @@ namespace XGL.FormItem {
#line hidden
#line 431 "..\..\..\..\FormItem\Main.xaml"
#line 436 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ContentControl Index;
@ -115,7 +127,7 @@ namespace XGL.FormItem {
#line hidden
#line 460 "..\..\..\..\FormItem\Main.xaml"
#line 465 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label LabDate;
@ -123,7 +135,7 @@ namespace XGL.FormItem {
#line hidden
#line 471 "..\..\..\..\FormItem\Main.xaml"
#line 476 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label LabTime;
@ -131,7 +143,7 @@ namespace XGL.FormItem {
#line hidden
#line 521 "..\..\..\..\FormItem\Main.xaml"
#line 526 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.StackPanel DownStart;
@ -139,7 +151,7 @@ namespace XGL.FormItem {
#line hidden
#line 543 "..\..\..\..\FormItem\Main.xaml"
#line 548 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock myTb;
@ -147,7 +159,7 @@ namespace XGL.FormItem {
#line hidden
#line 546 "..\..\..\..\FormItem\Main.xaml"
#line 551 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Documents.Run btnText;
@ -155,7 +167,7 @@ namespace XGL.FormItem {
#line hidden
#line 558 "..\..\..\..\FormItem\Main.xaml"
#line 563 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label lbVersion;
@ -163,7 +175,7 @@ namespace XGL.FormItem {
#line hidden
#line 567 "..\..\..\..\FormItem\Main.xaml"
#line 572 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button notsos;
@ -171,7 +183,7 @@ namespace XGL.FormItem {
#line hidden
#line 570 "..\..\..\..\FormItem\Main.xaml"
#line 575 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnZXH;
@ -179,7 +191,7 @@ namespace XGL.FormItem {
#line hidden
#line 574 "..\..\..\..\FormItem\Main.xaml"
#line 579 "..\..\..\..\FormItem\Main.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnFault;
@ -224,7 +236,7 @@ namespace XGL.FormItem {
#line default
#line hidden
#line 16 "..\..\..\..\FormItem\Main.xaml"
#line 17 "..\..\..\..\FormItem\Main.xaml"
((XGL.FormItem.Main)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
#line default
@ -278,7 +290,7 @@ namespace XGL.FormItem {
case 17:
this.notsos = ((System.Windows.Controls.Button)(target));
#line 567 "..\..\..\..\FormItem\Main.xaml"
#line 572 "..\..\..\..\FormItem\Main.xaml"
this.notsos.Click += new System.Windows.RoutedEventHandler(this.notsos_Click);
#line default
@ -287,7 +299,7 @@ namespace XGL.FormItem {
case 18:
this.btnZXH = ((System.Windows.Controls.Button)(target));
#line 570 "..\..\..\..\FormItem\Main.xaml"
#line 575 "..\..\..\..\FormItem\Main.xaml"
this.btnZXH.Click += new System.Windows.RoutedEventHandler(this.btnZXH_Click);
#line default
@ -296,7 +308,7 @@ namespace XGL.FormItem {
case 19:
this.btnFault = ((System.Windows.Controls.Button)(target));
#line 579 "..\..\..\..\FormItem\Main.xaml"
#line 584 "..\..\..\..\FormItem\Main.xaml"
this.btnFault.Click += new System.Windows.RoutedEventHandler(this.btnExit_Click);
#line default

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\LoginPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "ED8D0DD9EDE0F5E83CAE60027B075BAFAC7D762DF9CA1C2597ACC2525F2CDB1F"
#pragma checksum "..\..\..\LoginPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "2E95A962073781225F8FFCE2A42FE64E9C67BF857BC3E07920D23D0804411413"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -9,6 +9,18 @@
// </auto-generated>
//------------------------------------------------------------------------------
using HandyControl.Controls;
using HandyControl.Data;
using HandyControl.Expression.Media;
using HandyControl.Expression.Shapes;
using HandyControl.Interactivity;
using HandyControl.Media.Animation;
using HandyControl.Media.Effects;
using HandyControl.Properties.Langs;
using HandyControl.Themes;
using HandyControl.Tools;
using HandyControl.Tools.Converter;
using HandyControl.Tools.Extension;
using LoadingIndicators.WPF;
using MaterialDesignThemes.Wpf;
using MaterialDesignThemes.Wpf.Converters;
@ -46,7 +58,7 @@ namespace XGL {
public partial class LoginPage : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 36 "..\..\..\LoginPage.xaml"
#line 47 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox username;
@ -54,7 +66,7 @@ namespace XGL {
#line hidden
#line 37 "..\..\..\LoginPage.xaml"
#line 48 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.PasswordBox userpwd;
@ -62,7 +74,7 @@ namespace XGL {
#line hidden
#line 40 "..\..\..\LoginPage.xaml"
#line 51 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnCheckUpdate;
@ -70,7 +82,7 @@ namespace XGL {
#line hidden
#line 42 "..\..\..\LoginPage.xaml"
#line 53 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnlogin;
@ -78,7 +90,7 @@ namespace XGL {
#line hidden
#line 43 "..\..\..\LoginPage.xaml"
#line 54 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnloginout;
@ -86,7 +98,7 @@ namespace XGL {
#line hidden
#line 44 "..\..\..\LoginPage.xaml"
#line 55 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox rememberpwd;
@ -94,7 +106,7 @@ namespace XGL {
#line hidden
#line 51 "..\..\..\LoginPage.xaml"
#line 62 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal WpfCustomControlLibrary1.CustomControl1 dldh;
@ -102,7 +114,7 @@ namespace XGL {
#line hidden
#line 52 "..\..\..\LoginPage.xaml"
#line 63 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label zzdl;
@ -110,7 +122,7 @@ namespace XGL {
#line hidden
#line 54 "..\..\..\LoginPage.xaml"
#line 65 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label lbVersion;
@ -149,13 +161,13 @@ namespace XGL {
{
case 1:
#line 11 "..\..\..\LoginPage.xaml"
#line 12 "..\..\..\LoginPage.xaml"
((XGL.LoginPage)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseLeftButtonDown);
#line default
#line hidden
#line 11 "..\..\..\LoginPage.xaml"
#line 12 "..\..\..\LoginPage.xaml"
((XGL.LoginPage)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
#line default
@ -170,7 +182,7 @@ namespace XGL {
case 4:
this.btnCheckUpdate = ((System.Windows.Controls.Button)(target));
#line 40 "..\..\..\LoginPage.xaml"
#line 51 "..\..\..\LoginPage.xaml"
this.btnCheckUpdate.Click += new System.Windows.RoutedEventHandler(this.btnCheckUpdate_Click);
#line default
@ -179,7 +191,7 @@ namespace XGL {
case 5:
this.btnlogin = ((System.Windows.Controls.Button)(target));
#line 42 "..\..\..\LoginPage.xaml"
#line 53 "..\..\..\LoginPage.xaml"
this.btnlogin.Click += new System.Windows.RoutedEventHandler(this.btnlogin_Click);
#line default
@ -188,7 +200,7 @@ namespace XGL {
case 6:
this.btnloginout = ((System.Windows.Controls.Button)(target));
#line 43 "..\..\..\LoginPage.xaml"
#line 54 "..\..\..\LoginPage.xaml"
this.btnloginout.Click += new System.Windows.RoutedEventHandler(this.btnloginout_Click);
#line default

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\LoginPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "ED8D0DD9EDE0F5E83CAE60027B075BAFAC7D762DF9CA1C2597ACC2525F2CDB1F"
#pragma checksum "..\..\..\LoginPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "2E95A962073781225F8FFCE2A42FE64E9C67BF857BC3E07920D23D0804411413"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -9,6 +9,18 @@
// </auto-generated>
//------------------------------------------------------------------------------
using HandyControl.Controls;
using HandyControl.Data;
using HandyControl.Expression.Media;
using HandyControl.Expression.Shapes;
using HandyControl.Interactivity;
using HandyControl.Media.Animation;
using HandyControl.Media.Effects;
using HandyControl.Properties.Langs;
using HandyControl.Themes;
using HandyControl.Tools;
using HandyControl.Tools.Converter;
using HandyControl.Tools.Extension;
using LoadingIndicators.WPF;
using MaterialDesignThemes.Wpf;
using MaterialDesignThemes.Wpf.Converters;
@ -46,7 +58,7 @@ namespace XGL {
public partial class LoginPage : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 36 "..\..\..\LoginPage.xaml"
#line 47 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox username;
@ -54,7 +66,7 @@ namespace XGL {
#line hidden
#line 37 "..\..\..\LoginPage.xaml"
#line 48 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.PasswordBox userpwd;
@ -62,7 +74,7 @@ namespace XGL {
#line hidden
#line 40 "..\..\..\LoginPage.xaml"
#line 51 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnCheckUpdate;
@ -70,7 +82,7 @@ namespace XGL {
#line hidden
#line 42 "..\..\..\LoginPage.xaml"
#line 53 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnlogin;
@ -78,7 +90,7 @@ namespace XGL {
#line hidden
#line 43 "..\..\..\LoginPage.xaml"
#line 54 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnloginout;
@ -86,7 +98,7 @@ namespace XGL {
#line hidden
#line 44 "..\..\..\LoginPage.xaml"
#line 55 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox rememberpwd;
@ -94,7 +106,7 @@ namespace XGL {
#line hidden
#line 51 "..\..\..\LoginPage.xaml"
#line 62 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal WpfCustomControlLibrary1.CustomControl1 dldh;
@ -102,7 +114,7 @@ namespace XGL {
#line hidden
#line 52 "..\..\..\LoginPage.xaml"
#line 63 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label zzdl;
@ -110,7 +122,7 @@ namespace XGL {
#line hidden
#line 54 "..\..\..\LoginPage.xaml"
#line 65 "..\..\..\LoginPage.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label lbVersion;
@ -149,13 +161,13 @@ namespace XGL {
{
case 1:
#line 11 "..\..\..\LoginPage.xaml"
#line 12 "..\..\..\LoginPage.xaml"
((XGL.LoginPage)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseLeftButtonDown);
#line default
#line hidden
#line 11 "..\..\..\LoginPage.xaml"
#line 12 "..\..\..\LoginPage.xaml"
((XGL.LoginPage)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
#line default
@ -170,7 +182,7 @@ namespace XGL {
case 4:
this.btnCheckUpdate = ((System.Windows.Controls.Button)(target));
#line 40 "..\..\..\LoginPage.xaml"
#line 51 "..\..\..\LoginPage.xaml"
this.btnCheckUpdate.Click += new System.Windows.RoutedEventHandler(this.btnCheckUpdate_Click);
#line default
@ -179,7 +191,7 @@ namespace XGL {
case 5:
this.btnlogin = ((System.Windows.Controls.Button)(target));
#line 42 "..\..\..\LoginPage.xaml"
#line 53 "..\..\..\LoginPage.xaml"
this.btnlogin.Click += new System.Windows.RoutedEventHandler(this.btnlogin_Click);
#line default
@ -188,7 +200,7 @@ namespace XGL {
case 6:
this.btnloginout = ((System.Windows.Controls.Button)(target));
#line 43 "..\..\..\LoginPage.xaml"
#line 54 "..\..\..\LoginPage.xaml"
this.btnloginout.Click += new System.Windows.RoutedEventHandler(this.btnloginout_Click);
#line default

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\Views\LanJu_Prepare.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "0A5FD97D2D955461CAEDBE69C6CAF78B96F3F157BD1BF36EC001B750938330D8"
#pragma checksum "..\..\..\..\Views\LanJu_Prepare.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "FEF0B580AEF2712F6FD8C31D8BBC1DBCE7921CCD939035814A8BE057920690C9"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -9,6 +9,18 @@
// </auto-generated>
//------------------------------------------------------------------------------
using HandyControl.Controls;
using HandyControl.Data;
using HandyControl.Expression.Media;
using HandyControl.Expression.Shapes;
using HandyControl.Interactivity;
using HandyControl.Media.Animation;
using HandyControl.Media.Effects;
using HandyControl.Properties.Langs;
using HandyControl.Themes;
using HandyControl.Tools;
using HandyControl.Tools.Converter;
using HandyControl.Tools.Extension;
using System;
using System.Diagnostics;
using System.Windows;
@ -43,7 +55,7 @@ namespace XGL.Views {
public partial class LanJu_Prepare : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector, System.Windows.Markup.IStyleConnector {
#line 179 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 186 "..\..\..\..\Views\LanJu_Prepare.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal XGL.Tools.UserDatePicker dateStart;
@ -51,7 +63,7 @@ namespace XGL.Views {
#line hidden
#line 183 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 190 "..\..\..\..\Views\LanJu_Prepare.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnRefresh;
@ -59,7 +71,7 @@ namespace XGL.Views {
#line hidden
#line 190 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 197 "..\..\..\..\Views\LanJu_Prepare.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.DataGrid dgMaterialInfo;
@ -67,7 +79,7 @@ namespace XGL.Views {
#line hidden
#line 286 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 293 "..\..\..\..\Views\LanJu_Prepare.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.DataGrid WorkOrder;
@ -113,7 +125,7 @@ namespace XGL.Views {
{
case 1:
#line 11 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 12 "..\..\..\..\Views\LanJu_Prepare.xaml"
((XGL.Views.LanJu_Prepare)(target)).Loaded += new System.Windows.RoutedEventHandler(this.UserControl_Loaded);
#line default
@ -125,7 +137,7 @@ namespace XGL.Views {
case 3:
this.btnRefresh = ((System.Windows.Controls.Button)(target));
#line 184 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 191 "..\..\..\..\Views\LanJu_Prepare.xaml"
this.btnRefresh.Click += new System.Windows.RoutedEventHandler(this.btnRefresh_Click);
#line default
@ -134,7 +146,7 @@ namespace XGL.Views {
case 4:
this.dgMaterialInfo = ((System.Windows.Controls.DataGrid)(target));
#line 197 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 204 "..\..\..\..\Views\LanJu_Prepare.xaml"
this.dgMaterialInfo.LoadingRow += new System.EventHandler<System.Windows.Controls.DataGridRowEventArgs>(this.dgMaterialInfo_LoadingRow);
#line default
@ -142,7 +154,7 @@ namespace XGL.Views {
return;
case 5:
#line 239 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 246 "..\..\..\..\Views\LanJu_Prepare.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.btnStartOrders_Click);
#line default
@ -151,13 +163,13 @@ namespace XGL.Views {
case 6:
this.WorkOrder = ((System.Windows.Controls.DataGrid)(target));
#line 297 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 304 "..\..\..\..\Views\LanJu_Prepare.xaml"
this.WorkOrder.LoadingRow += new System.EventHandler<System.Windows.Controls.DataGridRowEventArgs>(this.USERLIST_LoadingRow);
#line default
#line hidden
#line 300 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 307 "..\..\..\..\Views\LanJu_Prepare.xaml"
this.WorkOrder.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.WorkOrder_SelectionChanged);
#line default
@ -178,7 +190,7 @@ namespace XGL.Views {
{
case 7:
#line 412 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 419 "..\..\..\..\Views\LanJu_Prepare.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Flow_Click);
#line default
@ -186,7 +198,7 @@ namespace XGL.Views {
break;
case 8:
#line 419 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 426 "..\..\..\..\Views\LanJu_Prepare.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SOP_Click);
#line default
@ -194,7 +206,7 @@ namespace XGL.Views {
break;
case 9:
#line 426 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 433 "..\..\..\..\Views\LanJu_Prepare.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Material_Click);
#line default

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\Views\LanJu_Prepare.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "0A5FD97D2D955461CAEDBE69C6CAF78B96F3F157BD1BF36EC001B750938330D8"
#pragma checksum "..\..\..\..\Views\LanJu_Prepare.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "FEF0B580AEF2712F6FD8C31D8BBC1DBCE7921CCD939035814A8BE057920690C9"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -9,6 +9,18 @@
// </auto-generated>
//------------------------------------------------------------------------------
using HandyControl.Controls;
using HandyControl.Data;
using HandyControl.Expression.Media;
using HandyControl.Expression.Shapes;
using HandyControl.Interactivity;
using HandyControl.Media.Animation;
using HandyControl.Media.Effects;
using HandyControl.Properties.Langs;
using HandyControl.Themes;
using HandyControl.Tools;
using HandyControl.Tools.Converter;
using HandyControl.Tools.Extension;
using System;
using System.Diagnostics;
using System.Windows;
@ -43,7 +55,7 @@ namespace XGL.Views {
public partial class LanJu_Prepare : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector, System.Windows.Markup.IStyleConnector {
#line 179 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 186 "..\..\..\..\Views\LanJu_Prepare.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal XGL.Tools.UserDatePicker dateStart;
@ -51,7 +63,7 @@ namespace XGL.Views {
#line hidden
#line 183 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 190 "..\..\..\..\Views\LanJu_Prepare.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnRefresh;
@ -59,7 +71,7 @@ namespace XGL.Views {
#line hidden
#line 190 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 197 "..\..\..\..\Views\LanJu_Prepare.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.DataGrid dgMaterialInfo;
@ -67,7 +79,7 @@ namespace XGL.Views {
#line hidden
#line 286 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 293 "..\..\..\..\Views\LanJu_Prepare.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.DataGrid WorkOrder;
@ -113,7 +125,7 @@ namespace XGL.Views {
{
case 1:
#line 11 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 12 "..\..\..\..\Views\LanJu_Prepare.xaml"
((XGL.Views.LanJu_Prepare)(target)).Loaded += new System.Windows.RoutedEventHandler(this.UserControl_Loaded);
#line default
@ -125,7 +137,7 @@ namespace XGL.Views {
case 3:
this.btnRefresh = ((System.Windows.Controls.Button)(target));
#line 184 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 191 "..\..\..\..\Views\LanJu_Prepare.xaml"
this.btnRefresh.Click += new System.Windows.RoutedEventHandler(this.btnRefresh_Click);
#line default
@ -134,7 +146,7 @@ namespace XGL.Views {
case 4:
this.dgMaterialInfo = ((System.Windows.Controls.DataGrid)(target));
#line 197 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 204 "..\..\..\..\Views\LanJu_Prepare.xaml"
this.dgMaterialInfo.LoadingRow += new System.EventHandler<System.Windows.Controls.DataGridRowEventArgs>(this.dgMaterialInfo_LoadingRow);
#line default
@ -142,7 +154,7 @@ namespace XGL.Views {
return;
case 5:
#line 239 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 246 "..\..\..\..\Views\LanJu_Prepare.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.btnStartOrders_Click);
#line default
@ -151,13 +163,13 @@ namespace XGL.Views {
case 6:
this.WorkOrder = ((System.Windows.Controls.DataGrid)(target));
#line 297 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 304 "..\..\..\..\Views\LanJu_Prepare.xaml"
this.WorkOrder.LoadingRow += new System.EventHandler<System.Windows.Controls.DataGridRowEventArgs>(this.USERLIST_LoadingRow);
#line default
#line hidden
#line 300 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 307 "..\..\..\..\Views\LanJu_Prepare.xaml"
this.WorkOrder.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.WorkOrder_SelectionChanged);
#line default
@ -178,7 +190,7 @@ namespace XGL.Views {
{
case 7:
#line 412 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 419 "..\..\..\..\Views\LanJu_Prepare.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Flow_Click);
#line default
@ -186,7 +198,7 @@ namespace XGL.Views {
break;
case 8:
#line 419 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 426 "..\..\..\..\Views\LanJu_Prepare.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SOP_Click);
#line default
@ -194,7 +206,7 @@ namespace XGL.Views {
break;
case 9:
#line 426 "..\..\..\..\Views\LanJu_Prepare.xaml"
#line 433 "..\..\..\..\Views\LanJu_Prepare.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Material_Click);
#line default

@ -1 +1 @@
d957678999165bfad3107a83e69576c229b13207
30e999caf06d51b8c117436acfb9236a86a322cf

@ -789,3 +789,6 @@ E:\workspace\LanJu\client\shangjian\XGL\obj\x86\Debug\XGL.csproj.CopyComplete
E:\workspace\LanJu\client\shangjian\XGL\obj\x86\Debug\XGL.exe
E:\workspace\LanJu\client\shangjian\XGL\obj\x86\Debug\XGL.pdb
E:\workspace\LanJu\client\shangjian\XGL\bin\Debug\Resources\nitsos.png
E:\workspace\LanJu\client\shangjian\XGL\bin\Debug\HandyControl.dll
E:\workspace\LanJu\client\shangjian\XGL\bin\Debug\HandyControl.pdb
E:\workspace\LanJu\client\shangjian\XGL\bin\Debug\HandyControl.xml

@ -13,7 +13,7 @@ E:\workspace\LanJu\client\shangjian\XGL\App.xaml
591234386457
4-78973161
79-1358286590
169-1229243378
170299286878
CSS\DataGridClass.xaml;CSS\NormalSmlBtnClass.xaml;CSS\SearchBtnClass.xaml;CSS\Style.xaml;CSS\SearchTextClass.xaml;CSS\TabControl.xaml;FormItem\FormBlankingBoard.xaml;FormItem\FormBoard.xaml;FormItem\FormChargingBoard.xaml;FormItem\FormLocator.xaml;FormItem\FormOutBoxBoard.xaml;FormItem\FormShowSelect.xaml;FormItem\Main.xaml;LoginPage.xaml;MainWindow.xaml;Tools\ModuleUC.xaml;UControl\ordertj.xaml;UControl\orderzfzy.xaml;UControl\orderzy.xaml;UControl\product_order.xaml;UControl\product_ordertj.xaml;UControl\product_orderzfzy.xaml;UControl\product_orderzy.xaml;UControl\UCArea.xaml;UControl\UCBoard.xaml;UControl\UCCar.xaml;UControl\UCCarL.xaml;UControl\UCLMix.xaml;UControl\UCMix.xaml;UControl\UCMixR.xaml;UControl\UCPermissionList.xaml;UControl\UCPostionList.xaml;UControl\UCProgressBar.xaml;UControl\UCRoleList.xaml;UControl\UCRProgressBar.xaml;UControl\UCStorage.xaml;UControl\UCStorageNew.xaml;UControl\UCStorageNewx.xaml;UControl\UCTakeOff.xaml;UControl\UCUserList.xaml;Views\CheckUserWin.xaml;Views\DryingRoomUC.xaml;Views\ShouPeiWin.xaml;Views\SopInfoWin.xaml;Views\FlowInfoWin.xaml;Views\LanJu_Complete.xaml;Views\LanJu_DeviceItems.xaml;Views\LanJu_Flow.xaml;Views\LanJu_Index.xaml;Views\LanJu_InOut.xaml;Views\LanJu_Material.xaml;Views\LanJu_NowUser.xaml;Views\LanJu_Operator.xaml;Views\LanJu_Paused.xaml;Views\LanJu_Prepare.xaml;Views\LanJu_User.xaml;Views\LanJu_UserRecord.xaml;Views\ViewPlcInfoWin.xaml;Views\ViewLogWin.xaml;
False

@ -13,7 +13,7 @@ E:\workspace\LanJu\client\shangjian\XGL\App.xaml
591234386457
4-78973161
801524658949
169-1229243378
170299286878
CSS\DataGridClass.xaml;CSS\NormalSmlBtnClass.xaml;CSS\SearchBtnClass.xaml;CSS\Style.xaml;CSS\SearchTextClass.xaml;CSS\TabControl.xaml;FormItem\FormBlankingBoard.xaml;FormItem\FormBoard.xaml;FormItem\FormChargingBoard.xaml;FormItem\FormLocator.xaml;FormItem\FormOutBoxBoard.xaml;FormItem\FormShowSelect.xaml;FormItem\Main.xaml;LoginPage.xaml;MainWindow.xaml;Tools\ModuleUC.xaml;UControl\ordertj.xaml;UControl\orderzfzy.xaml;UControl\orderzy.xaml;UControl\product_order.xaml;UControl\product_ordertj.xaml;UControl\product_orderzfzy.xaml;UControl\product_orderzy.xaml;UControl\UCArea.xaml;UControl\UCBoard.xaml;UControl\UCCar.xaml;UControl\UCCarL.xaml;UControl\UCLMix.xaml;UControl\UCMix.xaml;UControl\UCMixR.xaml;UControl\UCPermissionList.xaml;UControl\UCPostionList.xaml;UControl\UCProgressBar.xaml;UControl\UCRoleList.xaml;UControl\UCRProgressBar.xaml;UControl\UCStorage.xaml;UControl\UCStorageNew.xaml;UControl\UCStorageNewx.xaml;UControl\UCTakeOff.xaml;UControl\UCUserList.xaml;Views\CheckUserWin.xaml;Views\DryingRoomUC.xaml;Views\ShouPeiWin.xaml;Views\SopInfoWin.xaml;Views\FlowInfoWin.xaml;Views\LanJu_Complete.xaml;Views\LanJu_DeviceItems.xaml;Views\LanJu_Flow.xaml;Views\LanJu_Index.xaml;Views\LanJu_InOut.xaml;Views\LanJu_Material.xaml;Views\LanJu_NowUser.xaml;Views\LanJu_Operator.xaml;Views\LanJu_Paused.xaml;Views\LanJu_Prepare.xaml;Views\LanJu_User.xaml;Views\LanJu_UserRecord.xaml;Views\ViewPlcInfoWin.xaml;Views\ViewLogWin.xaml;
True

@ -1,6 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Extended.Wpf.Toolkit" version="3.3.0" targetFramework="net40" />
<package id="HandyControl" version="3.4.0" targetFramework="net48" />
<package id="HandyControls" version="3.4.5" targetFramework="net48" />
<package id="LiveCharts" version="0.9.7" targetFramework="net40" requireReinstallation="true" />
<package id="MaterialDesignColors" version="2.1.4" targetFramework="net48" />
<package id="MaterialDesignThemes" version="4.9.0" targetFramework="net48" />

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018-2022 HandyOrg
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -0,0 +1,58 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v5.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v5.0": {
"HandyControl/3.4.0.0": {
"runtime": {
"HandyControl.dll": {}
},
"resources": {
"tr/HandyControl.resources.dll": {
"locale": "tr"
},
"ca-ES/HandyControl.resources.dll": {
"locale": "ca-ES"
},
"en/HandyControl.resources.dll": {
"locale": "en"
},
"es/HandyControl.resources.dll": {
"locale": "es"
},
"fa/HandyControl.resources.dll": {
"locale": "fa"
},
"fr/HandyControl.resources.dll": {
"locale": "fr"
},
"ja/HandyControl.resources.dll": {
"locale": "ja"
},
"ko-KR/HandyControl.resources.dll": {
"locale": "ko-KR"
},
"pl/HandyControl.resources.dll": {
"locale": "pl"
},
"pt-BR/HandyControl.resources.dll": {
"locale": "pt-BR"
},
"ru/HandyControl.resources.dll": {
"locale": "ru"
}
}
}
}
},
"libraries": {
"HandyControl/3.4.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

File diff suppressed because it is too large Load Diff

@ -0,0 +1,58 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"HandyControl/3.4.0.0": {
"runtime": {
"HandyControl.dll": {}
},
"resources": {
"tr/HandyControl.resources.dll": {
"locale": "tr"
},
"ca-ES/HandyControl.resources.dll": {
"locale": "ca-ES"
},
"en/HandyControl.resources.dll": {
"locale": "en"
},
"es/HandyControl.resources.dll": {
"locale": "es"
},
"fa/HandyControl.resources.dll": {
"locale": "fa"
},
"fr/HandyControl.resources.dll": {
"locale": "fr"
},
"ja/HandyControl.resources.dll": {
"locale": "ja"
},
"ko-KR/HandyControl.resources.dll": {
"locale": "ko-KR"
},
"pl/HandyControl.resources.dll": {
"locale": "pl"
},
"pt-BR/HandyControl.resources.dll": {
"locale": "pt-BR"
},
"ru/HandyControl.resources.dll": {
"locale": "ru"
}
}
}
}
},
"libraries": {
"HandyControl/3.4.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

File diff suppressed because it is too large Load Diff

@ -0,0 +1,58 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v7.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
"HandyControl/3.4.0.0": {
"runtime": {
"HandyControl.dll": {}
},
"resources": {
"tr/HandyControl.resources.dll": {
"locale": "tr"
},
"ca-ES/HandyControl.resources.dll": {
"locale": "ca-ES"
},
"en/HandyControl.resources.dll": {
"locale": "en"
},
"es/HandyControl.resources.dll": {
"locale": "es"
},
"fa/HandyControl.resources.dll": {
"locale": "fa"
},
"fr/HandyControl.resources.dll": {
"locale": "fr"
},
"ja/HandyControl.resources.dll": {
"locale": "ja"
},
"ko-KR/HandyControl.resources.dll": {
"locale": "ko-KR"
},
"pl/HandyControl.resources.dll": {
"locale": "pl"
},
"pt-BR/HandyControl.resources.dll": {
"locale": "pt-BR"
},
"ru/HandyControl.resources.dll": {
"locale": "ru"
}
}
}
}
},
"libraries": {
"HandyControl/3.4.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

File diff suppressed because it is too large Load Diff

@ -0,0 +1,58 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.0": {
"HandyControl/3.4.0.0": {
"runtime": {
"HandyControl.dll": {}
},
"resources": {
"tr/HandyControl.resources.dll": {
"locale": "tr"
},
"ca-ES/HandyControl.resources.dll": {
"locale": "ca-ES"
},
"en/HandyControl.resources.dll": {
"locale": "en"
},
"es/HandyControl.resources.dll": {
"locale": "es"
},
"fa/HandyControl.resources.dll": {
"locale": "fa"
},
"fr/HandyControl.resources.dll": {
"locale": "fr"
},
"ja/HandyControl.resources.dll": {
"locale": "ja"
},
"ko-KR/HandyControl.resources.dll": {
"locale": "ko-KR"
},
"pl/HandyControl.resources.dll": {
"locale": "pl"
},
"pt-BR/HandyControl.resources.dll": {
"locale": "pt-BR"
},
"ru/HandyControl.resources.dll": {
"locale": "ru"
}
}
}
}
},
"libraries": {
"HandyControl/3.4.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

File diff suppressed because it is too large Load Diff

@ -0,0 +1,58 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"HandyControl/3.4.0.0": {
"runtime": {
"HandyControl.dll": {}
},
"resources": {
"tr/HandyControl.resources.dll": {
"locale": "tr"
},
"ca-ES/HandyControl.resources.dll": {
"locale": "ca-ES"
},
"en/HandyControl.resources.dll": {
"locale": "en"
},
"es/HandyControl.resources.dll": {
"locale": "es"
},
"fa/HandyControl.resources.dll": {
"locale": "fa"
},
"fr/HandyControl.resources.dll": {
"locale": "fr"
},
"ja/HandyControl.resources.dll": {
"locale": "ja"
},
"ko-KR/HandyControl.resources.dll": {
"locale": "ko-KR"
},
"pl/HandyControl.resources.dll": {
"locale": "pl"
},
"pt-BR/HandyControl.resources.dll": {
"locale": "pt-BR"
},
"ru/HandyControl.resources.dll": {
"locale": "ru"
}
}
}
}
},
"libraries": {
"HandyControl/3.4.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

File diff suppressed because it is too large Load Diff

@ -0,0 +1,86 @@
<FileList>
<File Reference="HandyControl.dll">
<ToolboxItems UIFramework="WPF" VSCategory="HandyControl" BlendCategory="HandyControl">
<Item Type="HandyControl.Controls.AnimationPath" />
<Item Type="HandyControl.Expression.Shapes.Arc" />
<Item Type="HandyControl.Controls.AxleCanvas" />
<Item Type="HandyControl.Controls.Badge" />
<Item Type="HandyControl.Controls.BlendEffectBox" />
<Item Type="HandyControl.Controls.ButtonGroup" />
<Item Type="HandyControl.Controls.CalendarWithClock" />
<Item Type="HandyControl.Controls.Card" />
<Item Type="HandyControl.Controls.Carousel" />
<Item Type="HandyControl.Controls.ChatBubble" />
<Item Type="HandyControl.Controls.CheckComboBox" />
<Item Type="HandyControl.Controls.CirclePanel" />
<Item Type="HandyControl.Controls.CircleProgressBar" />
<Item Type="HandyControl.Controls.Clock" />
<Item Type="HandyControl.Controls.Col" />
<Item Type="HandyControl.Controls.ColorPicker" />
<Item Type="HandyControl.Controls.ComboBox" />
<Item Type="HandyControl.Controls.CompareSlider" />
<Item Type="HandyControl.Controls.ContextMenuButton" />
<Item Type="HandyControl.Controls.ContextMenuToggleButton" />
<Item Type="HandyControl.Controls.CoverFlow" />
<Item Type="HandyControl.Controls.CoverView" />
<Item Type="HandyControl.Controls.DashedBorder" />
<Item Type="HandyControl.Controls.DatePicker" />
<Item Type="HandyControl.Controls.DateTimePicker" />
<Item Type="HandyControl.Controls.DialogContainer" />
<Item Type="HandyControl.Controls.Divider" />
<Item Type="HandyControl.Controls.Drawer" />
<Item Type="HandyControl.Controls.Empty" />
<Item Type="HandyControl.Controls.FlexPanel" />
<Item Type="HandyControl.Controls.FlipClock" />
<Item Type="HandyControl.Controls.FloatingBlock" />
<Item Type="HandyControl.Controls.GifImage" />
<Item Type="HandyControl.Controls.GotoTop" />
<Item Type="HandyControl.Controls.Gravatar" />
<Item Type="HandyControl.Controls.HoneycombPanel" />
<Item Type="HandyControl.Controls.ImageBlock" />
<Item Type="HandyControl.Controls.ImageSelector" />
<Item Type="HandyControl.Controls.ImageViewer" />
<Item Type="HandyControl.Controls.ListClock" />
<Item Type="HandyControl.Controls.LoadingCircle" />
<Item Type="HandyControl.Controls.LoadingLine" />
<Item Type="HandyControl.Controls.Magnifier" />
<Item Type="HandyControl.Controls.NotifyIcon" />
<Item Type="HandyControl.Controls.NumericUpDown" />
<Item Type="HandyControl.Controls.OutlineText" />
<Item Type="HandyControl.Controls.Pagination" />
<Item Type="HandyControl.Controls.PasswordBox" />
<Item Type="HandyControl.Controls.PinBox" />
<Item Type="HandyControl.Controls.Poptip" />
<Item Type="HandyControl.Controls.PreviewSlider" />
<Item Type="HandyControl.Controls.ProgressButton" />
<Item Type="HandyControl.Controls.PropertyGrid" />
<Item Type="HandyControl.Controls.RangeSlider" />
<Item Type="HandyControl.Controls.Rate" />
<Item Type="HandyControl.Controls.RelativePanel" />
<Item Type="HandyControl.Controls.Row" />
<Item Type="HandyControl.Controls.RunningBlock" />
<Item Type="HandyControl.Controls.ScrollViewer" />
<Item Type="HandyControl.Controls.SearchBar" />
<Item Type="HandyControl.Controls.Shield" />
<Item Type="HandyControl.Controls.SideMenu" />
<Item Type="HandyControl.Controls.SimplePanel" />
<Item Type="HandyControl.Controls.SimpleStackPanel" />
<Item Type="HandyControl.Controls.SimpleText" />
<Item Type="HandyControl.Controls.SplitButton" />
<Item Type="HandyControl.Controls.StepBar" />
<Item Type="HandyControl.Controls.TabControl" />
<Item Type="HandyControl.Controls.Tag" />
<Item Type="HandyControl.Controls.TagContainer" />
<Item Type="HandyControl.Controls.TextBox" />
<Item Type="HandyControl.Controls.TimeBar" />
<Item Type="HandyControl.Controls.TimePicker" />
<Item Type="HandyControl.Controls.ToggleBlock" />
<Item Type="HandyControl.Controls.Transfer" />
<Item Type="HandyControl.Controls.TransitioningContentControl" />
<Item Type="HandyControl.Controls.UniformSpacingPanel" />
<Item Type="HandyControl.Controls.WaterfallPanel" />
<Item Type="HandyControl.Controls.Watermark" />
<Item Type="HandyControl.Controls.WaveProgressBar" />
</ToolboxItems>
</File>
</FileList>

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018-2019 HandyOrg
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

@ -0,0 +1,444 @@
# Welcome to HandyControl
This project is based on [HandyControl](https://github.com/handyOrg/HandyControl) and includes some controls and features that are not included in the original project [for example support for Persian Calendar and PersianDate, More Controls and More Styles]
[See what's there](https://ghost1372.github.io/handycontrol/persianToolkit/)
## Documentation
[https://ghost1372.github.io/handycontrol/](https://ghost1372.github.io/handycontrol/)
## Usage
Step 1: Add a reference to HandyControls or search for HandyControls on the nuget;
```Install-Package HandyControls```
Step 2: Add code in App.xaml as follows:
```XML
<Application xmlns:hc="https://handyorg.github.io/handycontrol">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<hc:ThemeResources/>
<hc:Theme/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
```
Step 3: Add NameSpace:
`xmlns:hc="https://handyorg.github.io/handycontrol"`
Step 4: Enjoy coding
## VSIX packages for Visual Studio
| [HandyControls](https://marketplace.visualstudio.com/items?itemName=MahdiHosseini.HandyControls) |
| ------------- |
## Overview
![Overview](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Overview.png)
![Overview-dark](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Overview-dark.png)
## Latest examples
### WinUI Mica Material
![image](https://user-images.githubusercontent.com/9213496/139542436-037f0233-e8c6-4c04-9e16-4d50035ed0b3.png)
### AutoCompleteTextBox
![AutoCompleteTextBox](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/AutoCompleteTextBox.gif)
### ElementGroup
![ElementGroup](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ElementGroup.png)
### UniformSpacingPanel
![UniformSpacingPanel](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/UniformSpacingPanel.png)
### FlexPanel
![FlexPanel](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/FlexPanel.gif)
### CheckComboBox
![CheckComboBox](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/CheckComboBox.png)
## History publication
### ImageSelector
![ImageSelector](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ImageSelector.png)
### PropertyGrid
![PropertyGrid](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/PropertyGrid.png)
### Screenshot
![Screenshot](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Screenshot.png)
### GooeyEffect
![GooeyEffect](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/GooeyEffect.gif)
### GlowWindow
![GlowWindow](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/GlowWindow.png)
### FlowDocumentScrollViewerStyle
![FlowDocumentScrollViewerStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/FlowDocumentScrollViewer.png)
### PinBox
![PinBox](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/PinBox.png)
### Effects
![Effects](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Effects.png)
### RelativePanel
![RelativePanel](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/RelativePanel.png)
### Drawer
![Drawer](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Drawer.gif)
### Poptip
![Poptip](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Poptip.gif)
### Divider
![Divider](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Divider.png)
### GeometryAnimation
![GeometryAnimation](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/GeometryAnimation.gif)
### SplitButton
![SplitButton](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/SplitButton.gif)
### FloatingBlock
![FloatingBlock](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/FloatingBlock.gif)
### HoneycombPanel
![HoneycombPanel](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/HoneycombPanel.png)
### RunningBlock
![RunningBlock](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/RunningBlock.gif)
### ImageBlock
![ImageBlock](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ImageBlock.gif)
![ImageBlock](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ImageBlock.png)
### Magnifier
![Magnifier](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Magnifier.png)
### Card
![Card](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Card.png)
### ButtonGroup
![ButtonGroup](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ButtonGroup.png)
### Grid
![Grid](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Grid.gif)
### SideMenu
![SideMenu](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/SideMenu.png)
### NotifyIcon
![NotifyIcon](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/NotifyIcon.png)
### Dialog
![Dialog](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Dialog.png)
### WaveProgressBar
![WaveProgressBar](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/WaveProgressBar.gif)
### Badge
![Badge](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Badge.gif)
### Gravatar
![Gravatar](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Gravatar.gif)
### GoToTop
![GoToTop](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/GoToTop.gif)
### ChatBubble
![ChatBubble](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ChatBubble.png)
### Label
![Label](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Label.png)
### Transfer
![Transfer](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Transfer.gif)
### ProgressButton
![ProgressButton](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ProgressButton.gif)
### CoverFlow
![CoverFlow](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/CoverFlow.gif)
### CoverView
![CoverView](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/CoverView.gif)
### MessageBox
![MessageBox](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/MessageBox.png)
### WaterfallPanel
![WaterfallPanel](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/WaterfallPanel.png)
### Rate
![Rate](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Rate.gif)
### BlurWindow
![BlurWindow](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/BlurWindow.gif)
### FlipClock
![FlipClock](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/FlipClock.gif)
### Shield
![Shield](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Shield.png)
### OutlineText
![OutlineText](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/OutlineText.png)
### Tag
![Tag](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Tag.png)
### ToolBar
![ToolBar](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ToolBar.png)
### Slider
![Slider](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Slider.png)
### RangeSlider
![RangeSlider](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/RangeSlider.png)
### CircleProgressBar
![CircleProgressBar](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/CircleProgressBar.gif)
### ButtonStyle
![ButtonStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Button.png)
### ToggleButtonStyle
![ToggleButtonStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ToggleButton.png)
### RadioButtonStyle
![RadioButtonStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/RadioButton.png)
### CheckBoxStyle
![CheckBoxStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/CheckBox.png)
### ListBoxStyle
![ListBoxStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ListBox.png)
### TreeViewStyle
![TreeViewStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/TreeView.png)
### ListViewStyle
![ListViewStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ListView.png)
### DataGrid
![DataGrid](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/DataGrid.png)
### Now you can switch to dark theme
![dark theme](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/DarkTheme.png)
### ColorPicker
![ColorPicker](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ColorPicker.gif)
### Loading
![Loading](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Loading.gif)
### Carousel
![Carousel](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Carousel.gif)
### Pagination
![Pagination](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Pagination.gif)
### Expander
![Expander](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Expander.gif)
### TimeBar
![TimeBar](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/TimeBar.gif)
### ImageBrowser
![ImageBrowser](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ImageBrowser.gif)
### PreviewSlider
![PreviewSlider](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/PreviewSlider.gif)
### CompareSlider
![CompareSlider](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/CompareSlider-h.gif)
![CompareSlider](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/CompareSlider-v.gif)
### Growl
![Growl](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Growl.gif)
### AnimationPath
![AnimationPath](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/AnimationPath.gif)
### ProgressBar
![ProgressBar](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ProgressBar.gif)
### TabControl
![TabControl](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/TabControl.gif)
### TabControlStyle
![TabControlStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/TabControl.png)
### GroupBox
![GroupBox](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/GroupBox.png)
### StepBar
![StepBar](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/StepBar.gif)
### GifImage
![GifImage](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/GifImage.gif)
### ContextMenu
![ContextMenu](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ContextMenu.png)
### Calendar
![Calendar](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Calendar.gif)
### Clock
![Clock](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Clock.png)
### CalendarWithClock
![CalendarWithClock](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/CalendarWithClock.png)
### TextBlock
![TextBlock](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/TextBlock.png)
### RichTextBoxStyle
![RichTextBoxStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/RichTextBox.png)
### TextBox
![TextBox](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/TextBox.png)
### ComboBox
![ComboBox](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ComboBox.png)
### NumericUpDown
![NumericUpDown](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/NumericUpDown.png)
### SearchBar
![SearchBar](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/SearchBar.png)
### PasswordBox
![PasswordBox](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/PasswordBox.png)
### DatePicker
![DatePicker](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/DatePicker.png)
### TimePicker
![TimePicker](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/TimePicker.gif)
### DateTimePicker
![DateTimePicker](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/DateTimePicker.gif)
### ScrollViewer
![ScrollViewer](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/ScrollViewer.gif)
### CirclePanel
![CirclePanel](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/CirclePanel.png)
### TransitioningContentControl
![TransitioningContentControl](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/TransitioningContentControl.gif)
### BorderStyle
![BorderStyle](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Border.png)
### Brush
![Brush](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Resources/Brush.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save