Commit 9b5304f8 HZH

新增类office导航菜单

1 个父辈 2968253f
...@@ -437,7 +437,7 @@ namespace HZH_Controls.Controls ...@@ -437,7 +437,7 @@ namespace HZH_Controls.Controls
} }
m_lstAnchors[menu] = new FrmAnchor(lbl, panel, point); m_lstAnchors[menu] = new FrmAnchor(lbl, panel, point);
m_lstAnchors[menu].FormClosing += UCNavigationMenu_FormClosing; m_lstAnchors[menu].FormClosing += UCNavigationMenu_FormClosing;
m_lstAnchors[menu].Show(); m_lstAnchors[menu].Show(this);
m_lstAnchors[menu].Size = new Size(size.Width, height); m_lstAnchors[menu].Size = new Size(size.Width, height);
} }
} }
......
...@@ -253,7 +253,7 @@ namespace HZH_Controls.Controls ...@@ -253,7 +253,7 @@ namespace HZH_Controls.Controls
{ {
m_lstAnchors[menu] = new FrmAnchor(lbl, menu.ShowControl); m_lstAnchors[menu] = new FrmAnchor(lbl, menu.ShowControl);
} }
m_lstAnchors[menu].Show(); m_lstAnchors[menu].Show(this);
m_lstAnchors[menu].Size = menu.ShowControl.Size; m_lstAnchors[menu].Size = menu.ShowControl.Size;
} }
} }
......
namespace HZH_Controls.Controls
{
partial class UCNavigationMenuOffice
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.panMenu = new System.Windows.Forms.Panel();
this.panChilds = new System.Windows.Forms.Panel();
this.SuspendLayout();
//
// panMenu
//
this.panMenu.Dock = System.Windows.Forms.DockStyle.Top;
this.panMenu.Location = new System.Drawing.Point(0, 0);
this.panMenu.MaximumSize = new System.Drawing.Size(0, 25);
this.panMenu.MinimumSize = new System.Drawing.Size(0, 25);
this.panMenu.Name = "panMenu";
this.panMenu.Size = new System.Drawing.Size(441, 25);
this.panMenu.TabIndex = 0;
//
// panChilds
//
this.panChilds.Dock = System.Windows.Forms.DockStyle.Fill;
this.panChilds.Location = new System.Drawing.Point(0, 25);
this.panChilds.Name = "panChilds";
this.panChilds.Size = new System.Drawing.Size(441, 100);
this.panChilds.TabIndex = 1;
//
// UCNavigationMenuOffice
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(57)))), ((int)(((byte)(61)))), ((int)(((byte)(73)))));
this.Controls.Add(this.panChilds);
this.Controls.Add(this.panMenu);
this.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.Name = "UCNavigationMenuOffice";
this.Size = new System.Drawing.Size(441, 125);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panMenu;
private System.Windows.Forms.Panel panChilds;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using HZH_Controls.Forms;
namespace HZH_Controls.Controls
{
public partial class UCNavigationMenuOffice : UserControl
{
private int mainMenuHeight = 25;
[Description("主菜单高度,大于20的值"), Category("自定义")]
public int MainMenuHeight
{
get { return mainMenuHeight; }
set
{
if (value < 20)
return;
mainMenuHeight = value;
this.panMenu.Height = value;
}
}
private int expandHeight = 125;
[Description("展开后高度"), Category("自定义")]
public int ExpandHeight
{
get { return expandHeight; }
set { expandHeight = value; }
}
private bool isExpand = true;
[Description("是否展开"), Category("自定义")]
public bool IsExpand
{
get { return isExpand; }
set
{
isExpand = value;
if (value)
{
this.Height = expandHeight;
ResetChildControl();
}
else
{
this.Height = this.panMenu.Height;
this.panChilds.Controls.Clear();
}
}
}
/// <summary>
/// Occurs when [click itemed].
/// </summary>
[Description("点击节点事件"), Category("自定义")]
public event EventHandler ClickItemed;
/// <summary>
/// The select item
/// </summary>
private NavigationMenuItemExt selectItem = null;
/// <summary>
/// Gets the select item.
/// </summary>
/// <value>The select item.</value>
[Description("选中的节点"), Category("自定义")]
public NavigationMenuItemExt SelectItem
{
get { return selectItem; }
private set { selectItem = value; }
}
/// <summary>
/// The items
/// </summary>
NavigationMenuItemExt[] items;
/// <summary>
/// Gets or sets the items.
/// </summary>
/// <value>The items.</value>
[Description("节点列表"), Category("自定义")]
public NavigationMenuItemExt[] Items
{
get { return items; }
set
{
items = value;
ReloadMenu();
if (value != null && value.Length > 0)
{
selectItem = value[0];
ResetChildControl();
}
}
}
/// <summary>
/// The tip color
/// </summary>
private Color tipColor = Color.FromArgb(255, 87, 34);
/// <summary>
/// Gets or sets the color of the tip.
/// </summary>
/// <value>The color of the tip.</value>
[Description("角标颜色"), Category("自定义")]
public Color TipColor
{
get { return tipColor; }
set { tipColor = value; }
}
/// <summary>
/// 获取或设置控件的前景色。
/// </summary>
/// <value>The color of the fore.</value>
/// <PermissionSet>
/// <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
/// </PermissionSet>
public override System.Drawing.Color ForeColor
{
get
{
return base.ForeColor;
}
set
{
base.ForeColor = value;
foreach (Control c in this.Controls)
{
c.ForeColor = value;
}
}
}
/// <summary>
/// 获取或设置控件显示的文字的字体。
/// </summary>
/// <value>The font.</value>
/// <PermissionSet>
/// <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
/// <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
/// <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
/// <IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
/// </PermissionSet>
public override Font Font
{
get
{
return base.Font;
}
set
{
base.Font = value;
foreach (Control c in this.Controls)
{
c.Font = value;
}
}
}
/// <summary>
/// The m LST anchors
/// </summary>
Dictionary<NavigationMenuItemExt, FrmAnchor> m_lstAnchors = new Dictionary<NavigationMenuItemExt, FrmAnchor>();
public UCNavigationMenuOffice()
{
InitializeComponent();
this.SizeChanged += UCNavigationMenuOffice_SizeChanged;
items = new NavigationMenuItemExt[0];
if (ControlHelper.IsDesignMode())
{
items = new NavigationMenuItemExt[4];
for (int i = 0; i < 4; i++)
{
items[i] = new NavigationMenuItemExt()
{
Text = "菜单" + (i + 1),
AnchorRight = i >= 2
};
}
}
}
void UCNavigationMenuOffice_SizeChanged(object sender, EventArgs e)
{
if (isExpand)
{
expandHeight = this.Height;
}
}
public void ResetChildControl()
{
if (isExpand)
{
if (selectItem != null)
{
this.panChilds.Controls.Clear();
if (selectItem.ShowControl != null)
{
HZH_Controls.Controls.UCSplitLine_H split = new UCSplitLine_H();
split.BackColor = Color.FromArgb(50, 197, 197, 197);
split.Dock = DockStyle.Top;
this.panChilds.Controls.Add(split);
split.BringToFront();
this.panChilds.Controls.Add(selectItem.ShowControl);
selectItem.ShowControl.Dock = DockStyle.Fill;
}
}
}
}
/// <summary>
/// Reloads the menu.
/// </summary>
private void ReloadMenu()
{
try
{
ControlHelper.FreezeControl(this, true);
this.panMenu.Controls.Clear();
if (items != null && items.Length > 0)
{
foreach (var item in items)
{
var menu = (NavigationMenuItemExt)item;
Label lbl = new Label();
lbl.AutoSize = false;
lbl.TextAlign = ContentAlignment.MiddleCenter;
lbl.Width = menu.ItemWidth;
lbl.Text = menu.Text;
lbl.Font = Font;
lbl.ForeColor = ForeColor;
lbl.Paint += lbl_Paint;
lbl.MouseEnter += lbl_MouseEnter;
lbl.Tag = menu;
lbl.Click += lbl_Click;
lbl.DoubleClick += lbl_DoubleClick;
if (menu.AnchorRight)
{
lbl.Dock = DockStyle.Right;
}
else
{
lbl.Dock = DockStyle.Left;
}
this.panMenu.Controls.Add(lbl);
lbl.BringToFront();
}
}
}
finally
{
ControlHelper.FreezeControl(this, false);
}
}
void lbl_DoubleClick(object sender, EventArgs e)
{
IsExpand = !IsExpand;
}
/// <summary>
/// Handles the Click event of the lbl control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
void lbl_Click(object sender, EventArgs e)
{
Label lbl = sender as Label;
if (lbl.Tag != null)
{
var menu = (NavigationMenuItemExt)lbl.Tag;
if (menu.ShowControl == null)
{
selectItem = menu;
if (ClickItemed != null)
{
ClickItemed(this, e);
}
}
else
{
if (IsExpand)
{
selectItem = menu;
ResetChildControl();
}
}
}
}
/// <summary>
/// Handles the MouseEnter event of the lbl control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
void lbl_MouseEnter(object sender, EventArgs e)
{
if (!IsExpand)
{
Label lbl = sender as Label;
var menu = lbl.Tag as NavigationMenuItemExt;
foreach (var item in m_lstAnchors)
{
m_lstAnchors[item.Key].Hide();
}
if (menu.ShowControl != null)
{
if (!m_lstAnchors.ContainsKey(menu))
{
m_lstAnchors[menu] = new FrmAnchor(panMenu, menu.ShowControl, isNotFocus: false);
}
m_lstAnchors[menu].BackColor = this.BackColor;
m_lstAnchors[menu].Show(this);
m_lstAnchors[menu].Size = new Size(this.panChilds.Width, expandHeight - mainMenuHeight);
}
}
}
/// <summary>
/// Handles the Paint event of the lbl control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="PaintEventArgs" /> instance containing the event data.</param>
void lbl_Paint(object sender, PaintEventArgs e)
{
Label lbl = sender as Label;
if (lbl.Tag != null)
{
var menu = (NavigationMenuItemExt)lbl.Tag;
e.Graphics.SetGDIHigh();
if (menu.ShowTip)
{
if (!string.IsNullOrEmpty(menu.TipText))
{
var rect = new Rectangle(lbl.Width - 25, lbl.Height / 2 - 10, 20, 20);
var path = rect.CreateRoundedRectanglePath(5);
e.Graphics.FillPath(new SolidBrush(tipColor), path);
e.Graphics.DrawString(menu.TipText, new Font("微软雅黑", 8f), new SolidBrush(Color.White), rect, new StringFormat() { Alignment = StringAlignment.Center, LineAlignment = StringAlignment.Center });
}
else
{
e.Graphics.FillEllipse(new SolidBrush(tipColor), new Rectangle(lbl.Width - 20, lbl.Height / 2 - 10, 10, 10));
}
}
if (menu.Icon != null)
{
e.Graphics.DrawImage(menu.Icon, new Rectangle(1, (lbl.Height - 25) / 2, 25, 25), 0, 0, menu.Icon.Width, menu.Icon.Height, GraphicsUnit.Pixel);
}
}
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
\ No newline at end of file \ No newline at end of file
...@@ -97,6 +97,12 @@ ...@@ -97,6 +97,12 @@
<Compile Include="Controls\NavigationMenu\UCNavigationMenuExt.Designer.cs"> <Compile Include="Controls\NavigationMenu\UCNavigationMenuExt.Designer.cs">
<DependentUpon>UCNavigationMenuExt.cs</DependentUpon> <DependentUpon>UCNavigationMenuExt.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Controls\NavigationMenu\UCNavigationMenuOffice.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\NavigationMenu\UCNavigationMenuOffice.Designer.cs">
<DependentUpon>UCNavigationMenuOffice.cs</DependentUpon>
</Compile>
<Compile Include="Controls\Navigation\CrumbNavigationClickEventArgs.cs" /> <Compile Include="Controls\Navigation\CrumbNavigationClickEventArgs.cs" />
<Compile Include="Controls\Navigation\CrumbNavigationItem.cs" /> <Compile Include="Controls\Navigation\CrumbNavigationItem.cs" />
<Compile Include="Controls\Sampling\UCSampling.cs"> <Compile Include="Controls\Sampling\UCSampling.cs">
...@@ -732,6 +738,9 @@ ...@@ -732,6 +738,9 @@
<EmbeddedResource Include="Controls\NavigationMenu\UCNavigationMenuExt.resx"> <EmbeddedResource Include="Controls\NavigationMenu\UCNavigationMenuExt.resx">
<DependentUpon>UCNavigationMenuExt.cs</DependentUpon> <DependentUpon>UCNavigationMenuExt.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="Controls\NavigationMenu\UCNavigationMenuOffice.resx">
<DependentUpon>UCNavigationMenuOffice.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Controls\Navigation\UCCrumbNavigation.resx"> <EmbeddedResource Include="Controls\Navigation\UCCrumbNavigation.resx">
<DependentUpon>UCCrumbNavigation.cs</DependentUpon> <DependentUpon>UCCrumbNavigation.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
......
...@@ -66,6 +66,7 @@ namespace Test ...@@ -66,6 +66,7 @@ namespace Test
tnControl.Nodes.Add("内置颜色"); tnControl.Nodes.Add("内置颜色");
tnControl.Nodes.Add("导航菜单"); tnControl.Nodes.Add("导航菜单");
tnControl.Nodes.Add("扩展导航菜单"); tnControl.Nodes.Add("扩展导航菜单");
tnControl.Nodes.Add("类Office导航菜单");
tnControl.Nodes.Add("分割线标签"); tnControl.Nodes.Add("分割线标签");
tnControl.Nodes.Add("时间轴"); tnControl.Nodes.Add("时间轴");
tnControl.Nodes.Add("穿梭框"); tnControl.Nodes.Add("穿梭框");
...@@ -274,6 +275,9 @@ namespace Test ...@@ -274,6 +275,9 @@ namespace Test
case "扩展导航菜单": case "扩展导航菜单":
AddControl(new UC.UCTestNavigationMenuExt()); AddControl(new UC.UCTestNavigationMenuExt());
break; break;
case "类Office导航菜单":
AddControl(new UC.UCTestNavigationMenuOffice());
break;
case "分割线标签": case "分割线标签":
AddControl(new UC.UCTestSplitLabel()); AddControl(new UC.UCTestSplitLabel());
break; break;
......
...@@ -224,6 +224,18 @@ ...@@ -224,6 +224,18 @@
<Compile Include="UC\UCTestNavigationMenuExt.Designer.cs"> <Compile Include="UC\UCTestNavigationMenuExt.Designer.cs">
<DependentUpon>UCTestNavigationMenuExt.cs</DependentUpon> <DependentUpon>UCTestNavigationMenuExt.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="UC\UCTestNavigationMenuOffice.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="UC\UCTestNavigationMenuOffice.Designer.cs">
<DependentUpon>UCTestNavigationMenuOffice.cs</DependentUpon>
</Compile>
<Compile Include="UC\UCTestNavigationMenuOfficeItem.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="UC\UCTestNavigationMenuOfficeItem.Designer.cs">
<DependentUpon>UCTestNavigationMenuOfficeItem.cs</DependentUpon>
</Compile>
<Compile Include="UC\UCTestPage.cs"> <Compile Include="UC\UCTestPage.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
</Compile> </Compile>
...@@ -464,6 +476,12 @@ ...@@ -464,6 +476,12 @@
<EmbeddedResource Include="UC\UCTestNavigationMenuExt.resx"> <EmbeddedResource Include="UC\UCTestNavigationMenuExt.resx">
<DependentUpon>UCTestNavigationMenuExt.cs</DependentUpon> <DependentUpon>UCTestNavigationMenuExt.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="UC\UCTestNavigationMenuOffice.resx">
<DependentUpon>UCTestNavigationMenuOffice.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="UC\UCTestNavigationMenuOfficeItem.resx">
<DependentUpon>UCTestNavigationMenuOfficeItem.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="UC\UCTestPage.resx"> <EmbeddedResource Include="UC\UCTestPage.resx">
<DependentUpon>UCTestPage.cs</DependentUpon> <DependentUpon>UCTestPage.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
......
namespace Test.UC
{
partial class UCTestNavigationMenuOffice
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt1 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt2 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt3 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt4 = new HZH_Controls.Controls.NavigationMenuItemExt();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UCTestNavigationMenuOffice));
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt5 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt6 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt7 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt8 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt9 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt10 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt11 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt12 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt13 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt14 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt15 = new HZH_Controls.Controls.NavigationMenuItemExt();
HZH_Controls.Controls.NavigationMenuItemExt navigationMenuItemExt16 = new HZH_Controls.Controls.NavigationMenuItemExt();
this.ucNavigationMenuOffice1 = new HZH_Controls.Controls.UCNavigationMenuOffice();
this.ucNavigationMenuOffice2 = new HZH_Controls.Controls.UCNavigationMenuOffice();
this.ucNavigationMenuOffice3 = new HZH_Controls.Controls.UCNavigationMenuOffice();
this.ucNavigationMenuOffice4 = new HZH_Controls.Controls.UCNavigationMenuOffice();
this.SuspendLayout();
//
// ucNavigationMenuOffice1
//
this.ucNavigationMenuOffice1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(57)))), ((int)(((byte)(61)))), ((int)(((byte)(73)))));
this.ucNavigationMenuOffice1.ExpandHeight = 125;
this.ucNavigationMenuOffice1.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ucNavigationMenuOffice1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.ucNavigationMenuOffice1.IsExpand = true;
navigationMenuItemExt1.AnchorRight = false;
navigationMenuItemExt1.DataSource = null;
navigationMenuItemExt1.Icon = null;
navigationMenuItemExt1.ItemWidth = 100;
navigationMenuItemExt1.ShowControl = null;
navigationMenuItemExt1.ShowTip = true;
navigationMenuItemExt1.Text = "菜单1";
navigationMenuItemExt1.TipText = null;
navigationMenuItemExt2.AnchorRight = false;
navigationMenuItemExt2.DataSource = null;
navigationMenuItemExt2.Icon = null;
navigationMenuItemExt2.ItemWidth = 100;
navigationMenuItemExt2.ShowControl = null;
navigationMenuItemExt2.ShowTip = false;
navigationMenuItemExt2.Text = "菜单2";
navigationMenuItemExt2.TipText = null;
navigationMenuItemExt3.AnchorRight = true;
navigationMenuItemExt3.DataSource = null;
navigationMenuItemExt3.Icon = null;
navigationMenuItemExt3.ItemWidth = 100;
navigationMenuItemExt3.ShowControl = null;
navigationMenuItemExt3.ShowTip = true;
navigationMenuItemExt3.Text = "菜单3";
navigationMenuItemExt3.TipText = "1";
navigationMenuItemExt4.AnchorRight = true;
navigationMenuItemExt4.DataSource = null;
navigationMenuItemExt4.Icon = ((System.Drawing.Image)(resources.GetObject("navigationMenuItemExt4.Icon")));
navigationMenuItemExt4.ItemWidth = 100;
navigationMenuItemExt4.ShowControl = null;
navigationMenuItemExt4.ShowTip = false;
navigationMenuItemExt4.Text = "菜单4";
navigationMenuItemExt4.TipText = null;
this.ucNavigationMenuOffice1.Items = new HZH_Controls.Controls.NavigationMenuItemExt[] {
navigationMenuItemExt1,
navigationMenuItemExt2,
navigationMenuItemExt3,
navigationMenuItemExt4};
this.ucNavigationMenuOffice1.Location = new System.Drawing.Point(0, 0);
this.ucNavigationMenuOffice1.MainMenuHeight = 25;
this.ucNavigationMenuOffice1.Name = "ucNavigationMenuOffice1";
this.ucNavigationMenuOffice1.Size = new System.Drawing.Size(783, 125);
this.ucNavigationMenuOffice1.TabIndex = 0;
this.ucNavigationMenuOffice1.TipColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(87)))), ((int)(((byte)(34)))));
//
// ucNavigationMenuOffice2
//
this.ucNavigationMenuOffice2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(150)))), ((int)(((byte)(136)))));
this.ucNavigationMenuOffice2.ExpandHeight = 125;
this.ucNavigationMenuOffice2.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ucNavigationMenuOffice2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.ucNavigationMenuOffice2.IsExpand = true;
navigationMenuItemExt5.AnchorRight = false;
navigationMenuItemExt5.DataSource = null;
navigationMenuItemExt5.Icon = ((System.Drawing.Image)(resources.GetObject("navigationMenuItemExt5.Icon")));
navigationMenuItemExt5.ItemWidth = 100;
navigationMenuItemExt5.ShowControl = null;
navigationMenuItemExt5.ShowTip = false;
navigationMenuItemExt5.Text = "菜单1";
navigationMenuItemExt5.TipText = null;
navigationMenuItemExt6.AnchorRight = false;
navigationMenuItemExt6.DataSource = null;
navigationMenuItemExt6.Icon = null;
navigationMenuItemExt6.ItemWidth = 100;
navigationMenuItemExt6.ShowControl = null;
navigationMenuItemExt6.ShowTip = false;
navigationMenuItemExt6.Text = "菜单2";
navigationMenuItemExt6.TipText = null;
navigationMenuItemExt7.AnchorRight = true;
navigationMenuItemExt7.DataSource = null;
navigationMenuItemExt7.Icon = null;
navigationMenuItemExt7.ItemWidth = 100;
navigationMenuItemExt7.ShowControl = null;
navigationMenuItemExt7.ShowTip = true;
navigationMenuItemExt7.Text = "菜单3";
navigationMenuItemExt7.TipText = null;
navigationMenuItemExt8.AnchorRight = true;
navigationMenuItemExt8.DataSource = null;
navigationMenuItemExt8.Icon = null;
navigationMenuItemExt8.ItemWidth = 100;
navigationMenuItemExt8.ShowControl = null;
navigationMenuItemExt8.ShowTip = true;
navigationMenuItemExt8.Text = "菜单4";
navigationMenuItemExt8.TipText = "5";
this.ucNavigationMenuOffice2.Items = new HZH_Controls.Controls.NavigationMenuItemExt[] {
navigationMenuItemExt5,
navigationMenuItemExt6,
navigationMenuItemExt7,
navigationMenuItemExt8};
this.ucNavigationMenuOffice2.Location = new System.Drawing.Point(0, 187);
this.ucNavigationMenuOffice2.MainMenuHeight = 25;
this.ucNavigationMenuOffice2.Name = "ucNavigationMenuOffice2";
this.ucNavigationMenuOffice2.Size = new System.Drawing.Size(783, 125);
this.ucNavigationMenuOffice2.TabIndex = 0;
this.ucNavigationMenuOffice2.TipColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(87)))), ((int)(((byte)(34)))));
//
// ucNavigationMenuOffice3
//
this.ucNavigationMenuOffice3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(159)))), ((int)(((byte)(255)))));
this.ucNavigationMenuOffice3.ExpandHeight = 125;
this.ucNavigationMenuOffice3.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ucNavigationMenuOffice3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.ucNavigationMenuOffice3.IsExpand = true;
navigationMenuItemExt9.AnchorRight = false;
navigationMenuItemExt9.DataSource = null;
navigationMenuItemExt9.Icon = null;
navigationMenuItemExt9.ItemWidth = 100;
navigationMenuItemExt9.ShowControl = null;
navigationMenuItemExt9.ShowTip = true;
navigationMenuItemExt9.Text = "菜单1";
navigationMenuItemExt9.TipText = null;
navigationMenuItemExt10.AnchorRight = false;
navigationMenuItemExt10.DataSource = null;
navigationMenuItemExt10.Icon = null;
navigationMenuItemExt10.ItemWidth = 100;
navigationMenuItemExt10.ShowControl = null;
navigationMenuItemExt10.ShowTip = true;
navigationMenuItemExt10.Text = "菜单2";
navigationMenuItemExt10.TipText = null;
navigationMenuItemExt11.AnchorRight = true;
navigationMenuItemExt11.DataSource = null;
navigationMenuItemExt11.Icon = null;
navigationMenuItemExt11.ItemWidth = 100;
navigationMenuItemExt11.ShowControl = null;
navigationMenuItemExt11.ShowTip = true;
navigationMenuItemExt11.Text = "菜单3";
navigationMenuItemExt11.TipText = null;
navigationMenuItemExt12.AnchorRight = true;
navigationMenuItemExt12.DataSource = null;
navigationMenuItemExt12.Icon = null;
navigationMenuItemExt12.ItemWidth = 100;
navigationMenuItemExt12.ShowControl = null;
navigationMenuItemExt12.ShowTip = true;
navigationMenuItemExt12.Text = "菜单4";
navigationMenuItemExt12.TipText = null;
this.ucNavigationMenuOffice3.Items = new HZH_Controls.Controls.NavigationMenuItemExt[] {
navigationMenuItemExt9,
navigationMenuItemExt10,
navigationMenuItemExt11,
navigationMenuItemExt12};
this.ucNavigationMenuOffice3.Location = new System.Drawing.Point(0, 382);
this.ucNavigationMenuOffice3.MainMenuHeight = 25;
this.ucNavigationMenuOffice3.Name = "ucNavigationMenuOffice3";
this.ucNavigationMenuOffice3.Size = new System.Drawing.Size(783, 125);
this.ucNavigationMenuOffice3.TabIndex = 0;
this.ucNavigationMenuOffice3.TipColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(87)))), ((int)(((byte)(34)))));
//
// ucNavigationMenuOffice4
//
this.ucNavigationMenuOffice4.BackColor = System.Drawing.Color.Gray;
this.ucNavigationMenuOffice4.ExpandHeight = 125;
this.ucNavigationMenuOffice4.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ucNavigationMenuOffice4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.ucNavigationMenuOffice4.IsExpand = true;
navigationMenuItemExt13.AnchorRight = false;
navigationMenuItemExt13.DataSource = null;
navigationMenuItemExt13.Icon = null;
navigationMenuItemExt13.ItemWidth = 100;
navigationMenuItemExt13.ShowControl = null;
navigationMenuItemExt13.ShowTip = false;
navigationMenuItemExt13.Text = "菜单1";
navigationMenuItemExt13.TipText = null;
navigationMenuItemExt14.AnchorRight = false;
navigationMenuItemExt14.DataSource = null;
navigationMenuItemExt14.Icon = null;
navigationMenuItemExt14.ItemWidth = 100;
navigationMenuItemExt14.ShowControl = null;
navigationMenuItemExt14.ShowTip = false;
navigationMenuItemExt14.Text = "菜单2";
navigationMenuItemExt14.TipText = null;
navigationMenuItemExt15.AnchorRight = true;
navigationMenuItemExt15.DataSource = null;
navigationMenuItemExt15.Icon = null;
navigationMenuItemExt15.ItemWidth = 100;
navigationMenuItemExt15.ShowControl = null;
navigationMenuItemExt15.ShowTip = false;
navigationMenuItemExt15.Text = "菜单3";
navigationMenuItemExt15.TipText = null;
navigationMenuItemExt16.AnchorRight = true;
navigationMenuItemExt16.DataSource = null;
navigationMenuItemExt16.Icon = null;
navigationMenuItemExt16.ItemWidth = 100;
navigationMenuItemExt16.ShowControl = null;
navigationMenuItemExt16.ShowTip = false;
navigationMenuItemExt16.Text = "菜单4";
navigationMenuItemExt16.TipText = null;
this.ucNavigationMenuOffice4.Items = new HZH_Controls.Controls.NavigationMenuItemExt[] {
navigationMenuItemExt13,
navigationMenuItemExt14,
navigationMenuItemExt15,
navigationMenuItemExt16};
this.ucNavigationMenuOffice4.Location = new System.Drawing.Point(0, 561);
this.ucNavigationMenuOffice4.MainMenuHeight = 25;
this.ucNavigationMenuOffice4.Name = "ucNavigationMenuOffice4";
this.ucNavigationMenuOffice4.Size = new System.Drawing.Size(783, 125);
this.ucNavigationMenuOffice4.TabIndex = 0;
this.ucNavigationMenuOffice4.TipColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(87)))), ((int)(((byte)(34)))));
//
// UCTestNavigationMenuOffice
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.ucNavigationMenuOffice4);
this.Controls.Add(this.ucNavigationMenuOffice3);
this.Controls.Add(this.ucNavigationMenuOffice2);
this.Controls.Add(this.ucNavigationMenuOffice1);
this.Name = "UCTestNavigationMenuOffice";
this.Size = new System.Drawing.Size(783, 723);
this.Load += new System.EventHandler(this.UCTestNavigationMenuOffice_Load);
this.ResumeLayout(false);
}
#endregion
private HZH_Controls.Controls.UCNavigationMenuOffice ucNavigationMenuOffice1;
private HZH_Controls.Controls.UCNavigationMenuOffice ucNavigationMenuOffice2;
private HZH_Controls.Controls.UCNavigationMenuOffice ucNavigationMenuOffice3;
private HZH_Controls.Controls.UCNavigationMenuOffice ucNavigationMenuOffice4;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using HZH_Controls.Controls;
namespace Test.UC
{
public partial class UCTestNavigationMenuOffice : UserControl
{
public UCTestNavigationMenuOffice()
{
InitializeComponent();
}
private void UCTestNavigationMenuOffice_Load(object sender, EventArgs e)
{
foreach (NavigationMenuItemExt item in this.ucNavigationMenuOffice1.Items)
{
Control panel1 =new UCTestNavigationMenuOfficeItem( item.Text);
item.ShowControl = panel1;
}
this.ucNavigationMenuOffice1.ResetChildControl();
foreach (NavigationMenuItemExt item in this.ucNavigationMenuOffice2.Items)
{
Control panel1 = new UCTestNavigationMenuOfficeItem(item.Text);
item.ShowControl = panel1;
}
this.ucNavigationMenuOffice2.ResetChildControl();
foreach (NavigationMenuItemExt item in this.ucNavigationMenuOffice3.Items)
{
Control panel1 = new UCTestNavigationMenuOfficeItem(item.Text);
item.ShowControl = panel1;
}
this.ucNavigationMenuOffice3.ResetChildControl();
foreach (NavigationMenuItemExt item in this.ucNavigationMenuOffice4.Items)
{
Control panel1 = new UCTestNavigationMenuOfficeItem(item.Text);
item.ShowControl = panel1;
}
this.ucNavigationMenuOffice4.ResetChildControl();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="navigationMenuItemExt4.Icon" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAEGSURBVDhP7ZGxagJBFEX3A9JYBjtLgx9gIYRAsLKK/kSqFIKCyKbMD1jYpE8nyZJA2NmdnW0C
FpI/MKS3t8t58kxlsbOL3R64zHt35l12Z4Kakzjn2mmaXmhbHWPMo7X2B/XUqoYEivjKX0LnaheHoRHD
T9r+B6Im/it64xoudbsYSZIsGLQScgwUH2/I3jdreDjoA4N3DO6OgfRL+i31jR7xJ4qiBiGf6IureFa7
PAQN0UpE4FJtf/i9KwJeCBqjkPqedcLq8jxv6bFiMHjNoInjuKt9iB6k5nX71Gv2B9KXQgOnhPRYP9CG
+la3/ZFAeWVC9tQztcsjgeg9y7KOWjVnIwj+AISOvF76iy4mAAAAAElFTkSuQmCC
</value>
</data>
<data name="navigationMenuItemExt5.Icon" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAEGSURBVDhP7ZGxagJBFEX3A9JYBjtLgx9gIYRAsLKK/kSqFIKCyKbMD1jYpE8nyZJA2NmdnW0C
FpI/MKS3t8t58kxlsbOL3R64zHt35l12Z4Kakzjn2mmaXmhbHWPMo7X2B/XUqoYEivjKX0LnaheHoRHD
T9r+B6Im/it64xoudbsYSZIsGLQScgwUH2/I3jdreDjoA4N3DO6OgfRL+i31jR7xJ4qiBiGf6IureFa7
PAQN0UpE4FJtf/i9KwJeCBqjkPqedcLq8jxv6bFiMHjNoInjuKt9iB6k5nX71Gv2B9KXQgOnhPRYP9CG
+la3/ZFAeWVC9tQztcsjgeg9y7KOWjVnIwj+AISOvF76iy4mAAAAAElFTkSuQmCC
</value>
</data>
</root>
\ No newline at end of file \ No newline at end of file
namespace Test.UC
{
partial class UCTestNavigationMenuOfficeItem
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UCTestNavigationMenuOfficeItem));
this.ucBtnImg1 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg2 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg3 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg4 = new HZH_Controls.Controls.UCBtnImg();
this.ucSplitLine_V1 = new HZH_Controls.Controls.UCSplitLine_V();
this.ucBtnImg5 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg6 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg7 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg8 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg9 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg10 = new HZH_Controls.Controls.UCBtnImg();
this.ucSplitLine_V2 = new HZH_Controls.Controls.UCSplitLine_V();
this.ucBtnImg11 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg12 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg13 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg14 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg15 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg16 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg17 = new HZH_Controls.Controls.UCBtnImg();
this.ucBtnImg18 = new HZH_Controls.Controls.UCBtnImg();
this.ucSplitLine_V3 = new HZH_Controls.Controls.UCSplitLine_V();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// ucBtnImg1
//
this.ucBtnImg1.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg1.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg1.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg1.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg1.BtnText = "";
this.ucBtnImg1.ConerRadius = 5;
this.ucBtnImg1.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg1.FillColor = System.Drawing.Color.White;
this.ucBtnImg1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg1.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg1.Image")));
this.ucBtnImg1.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg1.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg1.ImageFontIcons")));
this.ucBtnImg1.IsRadius = true;
this.ucBtnImg1.IsShowRect = true;
this.ucBtnImg1.IsShowTips = false;
this.ucBtnImg1.Location = new System.Drawing.Point(13, 11);
this.ucBtnImg1.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg1.Name = "ucBtnImg1";
this.ucBtnImg1.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnImg1.RectWidth = 1;
this.ucBtnImg1.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg1.TabIndex = 0;
this.ucBtnImg1.TabStop = false;
this.ucBtnImg1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg1.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg1.TipsText = "";
//
// ucBtnImg2
//
this.ucBtnImg2.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg2.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg2.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg2.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg2.BtnText = "";
this.ucBtnImg2.ConerRadius = 5;
this.ucBtnImg2.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg2.FillColor = System.Drawing.Color.White;
this.ucBtnImg2.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg2.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg2.Image")));
this.ucBtnImg2.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg2.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg2.ImageFontIcons")));
this.ucBtnImg2.IsRadius = true;
this.ucBtnImg2.IsShowRect = true;
this.ucBtnImg2.IsShowTips = false;
this.ucBtnImg2.Location = new System.Drawing.Point(13, 54);
this.ucBtnImg2.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg2.Name = "ucBtnImg2";
this.ucBtnImg2.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnImg2.RectWidth = 1;
this.ucBtnImg2.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg2.TabIndex = 0;
this.ucBtnImg2.TabStop = false;
this.ucBtnImg2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg2.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg2.TipsText = "";
//
// ucBtnImg3
//
this.ucBtnImg3.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg3.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg3.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg3.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg3.BtnText = "";
this.ucBtnImg3.ConerRadius = 5;
this.ucBtnImg3.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg3.FillColor = System.Drawing.Color.White;
this.ucBtnImg3.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg3.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg3.Image")));
this.ucBtnImg3.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg3.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg3.ImageFontIcons")));
this.ucBtnImg3.IsRadius = true;
this.ucBtnImg3.IsShowRect = true;
this.ucBtnImg3.IsShowTips = false;
this.ucBtnImg3.Location = new System.Drawing.Point(71, 11);
this.ucBtnImg3.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg3.Name = "ucBtnImg3";
this.ucBtnImg3.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnImg3.RectWidth = 1;
this.ucBtnImg3.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg3.TabIndex = 0;
this.ucBtnImg3.TabStop = false;
this.ucBtnImg3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg3.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg3.TipsText = "";
//
// ucBtnImg4
//
this.ucBtnImg4.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg4.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg4.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg4.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg4.BtnText = "";
this.ucBtnImg4.ConerRadius = 5;
this.ucBtnImg4.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg4.FillColor = System.Drawing.Color.White;
this.ucBtnImg4.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg4.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg4.Image")));
this.ucBtnImg4.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg4.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg4.ImageFontIcons")));
this.ucBtnImg4.IsRadius = true;
this.ucBtnImg4.IsShowRect = true;
this.ucBtnImg4.IsShowTips = false;
this.ucBtnImg4.Location = new System.Drawing.Point(71, 54);
this.ucBtnImg4.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg4.Name = "ucBtnImg4";
this.ucBtnImg4.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnImg4.RectWidth = 1;
this.ucBtnImg4.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg4.TabIndex = 0;
this.ucBtnImg4.TabStop = false;
this.ucBtnImg4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg4.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg4.TipsText = "";
//
// ucSplitLine_V1
//
this.ucSplitLine_V1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
this.ucSplitLine_V1.Location = new System.Drawing.Point(128, 11);
this.ucSplitLine_V1.Name = "ucSplitLine_V1";
this.ucSplitLine_V1.Size = new System.Drawing.Size(1, 76);
this.ucSplitLine_V1.TabIndex = 1;
this.ucSplitLine_V1.TabStop = false;
//
// ucBtnImg5
//
this.ucBtnImg5.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg5.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg5.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg5.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg5.BtnText = "";
this.ucBtnImg5.ConerRadius = 5;
this.ucBtnImg5.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg5.FillColor = System.Drawing.Color.White;
this.ucBtnImg5.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg5.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg5.Image")));
this.ucBtnImg5.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg5.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg5.ImageFontIcons")));
this.ucBtnImg5.IsRadius = true;
this.ucBtnImg5.IsShowRect = true;
this.ucBtnImg5.IsShowTips = false;
this.ucBtnImg5.Location = new System.Drawing.Point(143, 11);
this.ucBtnImg5.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg5.Name = "ucBtnImg5";
this.ucBtnImg5.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnImg5.RectWidth = 1;
this.ucBtnImg5.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg5.TabIndex = 0;
this.ucBtnImg5.TabStop = false;
this.ucBtnImg5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg5.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg5.TipsText = "";
//
// ucBtnImg6
//
this.ucBtnImg6.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg6.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg6.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg6.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg6.BtnText = "";
this.ucBtnImg6.ConerRadius = 5;
this.ucBtnImg6.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg6.FillColor = System.Drawing.Color.White;
this.ucBtnImg6.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg6.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg6.Image")));
this.ucBtnImg6.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg6.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg6.ImageFontIcons")));
this.ucBtnImg6.IsRadius = true;
this.ucBtnImg6.IsShowRect = true;
this.ucBtnImg6.IsShowTips = false;
this.ucBtnImg6.Location = new System.Drawing.Point(203, 11);
this.ucBtnImg6.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg6.Name = "ucBtnImg6";
this.ucBtnImg6.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnImg6.RectWidth = 1;
this.ucBtnImg6.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg6.TabIndex = 0;
this.ucBtnImg6.TabStop = false;
this.ucBtnImg6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg6.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg6.TipsText = "";
//
// ucBtnImg7
//
this.ucBtnImg7.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg7.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg7.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg7.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg7.BtnText = "";
this.ucBtnImg7.ConerRadius = 5;
this.ucBtnImg7.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg7.FillColor = System.Drawing.Color.White;
this.ucBtnImg7.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg7.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg7.Image")));
this.ucBtnImg7.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg7.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg7.ImageFontIcons")));
this.ucBtnImg7.IsRadius = true;
this.ucBtnImg7.IsShowRect = true;
this.ucBtnImg7.IsShowTips = false;
this.ucBtnImg7.Location = new System.Drawing.Point(263, 11);
this.ucBtnImg7.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg7.Name = "ucBtnImg7";
this.ucBtnImg7.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnImg7.RectWidth = 1;
this.ucBtnImg7.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg7.TabIndex = 0;
this.ucBtnImg7.TabStop = false;
this.ucBtnImg7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg7.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg7.TipsText = "";
//
// ucBtnImg8
//
this.ucBtnImg8.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg8.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg8.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg8.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg8.BtnText = "";
this.ucBtnImg8.ConerRadius = 5;
this.ucBtnImg8.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg8.FillColor = System.Drawing.Color.White;
this.ucBtnImg8.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg8.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg8.Image")));
this.ucBtnImg8.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg8.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg8.ImageFontIcons")));
this.ucBtnImg8.IsRadius = true;
this.ucBtnImg8.IsShowRect = true;
this.ucBtnImg8.IsShowTips = false;
this.ucBtnImg8.Location = new System.Drawing.Point(143, 55);
this.ucBtnImg8.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg8.Name = "ucBtnImg8";
this.ucBtnImg8.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnImg8.RectWidth = 1;
this.ucBtnImg8.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg8.TabIndex = 0;
this.ucBtnImg8.TabStop = false;
this.ucBtnImg8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg8.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg8.TipsText = "";
//
// ucBtnImg9
//
this.ucBtnImg9.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg9.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg9.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg9.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg9.BtnText = "";
this.ucBtnImg9.ConerRadius = 5;
this.ucBtnImg9.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg9.FillColor = System.Drawing.Color.White;
this.ucBtnImg9.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg9.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg9.Image")));
this.ucBtnImg9.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg9.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg9.ImageFontIcons")));
this.ucBtnImg9.IsRadius = true;
this.ucBtnImg9.IsShowRect = true;
this.ucBtnImg9.IsShowTips = false;
this.ucBtnImg9.Location = new System.Drawing.Point(203, 54);
this.ucBtnImg9.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg9.Name = "ucBtnImg9";
this.ucBtnImg9.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnImg9.RectWidth = 1;
this.ucBtnImg9.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg9.TabIndex = 0;
this.ucBtnImg9.TabStop = false;
this.ucBtnImg9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg9.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg9.TipsText = "";
//
// ucBtnImg10
//
this.ucBtnImg10.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg10.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg10.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg10.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg10.BtnText = "";
this.ucBtnImg10.ConerRadius = 5;
this.ucBtnImg10.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg10.FillColor = System.Drawing.Color.White;
this.ucBtnImg10.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg10.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg10.Image")));
this.ucBtnImg10.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg10.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg10.ImageFontIcons")));
this.ucBtnImg10.IsRadius = true;
this.ucBtnImg10.IsShowRect = true;
this.ucBtnImg10.IsShowTips = false;
this.ucBtnImg10.Location = new System.Drawing.Point(263, 55);
this.ucBtnImg10.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg10.Name = "ucBtnImg10";
this.ucBtnImg10.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnImg10.RectWidth = 1;
this.ucBtnImg10.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg10.TabIndex = 0;
this.ucBtnImg10.TabStop = false;
this.ucBtnImg10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg10.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg10.TipsText = "";
//
// ucSplitLine_V2
//
this.ucSplitLine_V2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
this.ucSplitLine_V2.Location = new System.Drawing.Point(325, 10);
this.ucSplitLine_V2.Name = "ucSplitLine_V2";
this.ucSplitLine_V2.Size = new System.Drawing.Size(1, 76);
this.ucSplitLine_V2.TabIndex = 2;
this.ucSplitLine_V2.TabStop = false;
//
// ucBtnImg11
//
this.ucBtnImg11.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg11.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg11.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg11.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg11.BtnText = "";
this.ucBtnImg11.ConerRadius = 5;
this.ucBtnImg11.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg11.FillColor = System.Drawing.Color.White;
this.ucBtnImg11.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg11.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg11.Image")));
this.ucBtnImg11.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg11.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg11.ImageFontIcons")));
this.ucBtnImg11.IsRadius = true;
this.ucBtnImg11.IsShowRect = true;
this.ucBtnImg11.IsShowTips = false;
this.ucBtnImg11.Location = new System.Drawing.Point(341, 11);
this.ucBtnImg11.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg11.Name = "ucBtnImg11";
this.ucBtnImg11.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
this.ucBtnImg11.RectWidth = 1;
this.ucBtnImg11.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg11.TabIndex = 0;
this.ucBtnImg11.TabStop = false;
this.ucBtnImg11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg11.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg11.TipsText = "";
//
// ucBtnImg12
//
this.ucBtnImg12.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg12.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg12.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg12.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg12.BtnText = "";
this.ucBtnImg12.ConerRadius = 5;
this.ucBtnImg12.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg12.FillColor = System.Drawing.Color.White;
this.ucBtnImg12.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg12.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg12.Image")));
this.ucBtnImg12.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg12.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg12.ImageFontIcons")));
this.ucBtnImg12.IsRadius = true;
this.ucBtnImg12.IsShowRect = true;
this.ucBtnImg12.IsShowTips = false;
this.ucBtnImg12.Location = new System.Drawing.Point(400, 11);
this.ucBtnImg12.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg12.Name = "ucBtnImg12";
this.ucBtnImg12.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
this.ucBtnImg12.RectWidth = 1;
this.ucBtnImg12.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg12.TabIndex = 0;
this.ucBtnImg12.TabStop = false;
this.ucBtnImg12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg12.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg12.TipsText = "";
//
// ucBtnImg13
//
this.ucBtnImg13.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg13.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg13.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg13.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg13.BtnText = "";
this.ucBtnImg13.ConerRadius = 5;
this.ucBtnImg13.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg13.FillColor = System.Drawing.Color.White;
this.ucBtnImg13.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg13.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg13.Image")));
this.ucBtnImg13.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg13.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg13.ImageFontIcons")));
this.ucBtnImg13.IsRadius = true;
this.ucBtnImg13.IsShowRect = true;
this.ucBtnImg13.IsShowTips = false;
this.ucBtnImg13.Location = new System.Drawing.Point(461, 11);
this.ucBtnImg13.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg13.Name = "ucBtnImg13";
this.ucBtnImg13.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
this.ucBtnImg13.RectWidth = 1;
this.ucBtnImg13.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg13.TabIndex = 0;
this.ucBtnImg13.TabStop = false;
this.ucBtnImg13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg13.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg13.TipsText = "";
//
// ucBtnImg14
//
this.ucBtnImg14.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg14.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg14.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg14.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg14.BtnText = "";
this.ucBtnImg14.ConerRadius = 5;
this.ucBtnImg14.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg14.FillColor = System.Drawing.Color.White;
this.ucBtnImg14.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg14.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg14.Image")));
this.ucBtnImg14.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg14.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg14.ImageFontIcons")));
this.ucBtnImg14.IsRadius = true;
this.ucBtnImg14.IsShowRect = true;
this.ucBtnImg14.IsShowTips = false;
this.ucBtnImg14.Location = new System.Drawing.Point(523, 11);
this.ucBtnImg14.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg14.Name = "ucBtnImg14";
this.ucBtnImg14.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
this.ucBtnImg14.RectWidth = 1;
this.ucBtnImg14.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg14.TabIndex = 0;
this.ucBtnImg14.TabStop = false;
this.ucBtnImg14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg14.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg14.TipsText = "";
//
// ucBtnImg15
//
this.ucBtnImg15.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg15.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg15.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg15.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg15.BtnText = "";
this.ucBtnImg15.ConerRadius = 5;
this.ucBtnImg15.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg15.FillColor = System.Drawing.Color.White;
this.ucBtnImg15.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg15.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg15.Image")));
this.ucBtnImg15.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg15.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg15.ImageFontIcons")));
this.ucBtnImg15.IsRadius = true;
this.ucBtnImg15.IsShowRect = true;
this.ucBtnImg15.IsShowTips = false;
this.ucBtnImg15.Location = new System.Drawing.Point(341, 54);
this.ucBtnImg15.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg15.Name = "ucBtnImg15";
this.ucBtnImg15.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
this.ucBtnImg15.RectWidth = 1;
this.ucBtnImg15.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg15.TabIndex = 0;
this.ucBtnImg15.TabStop = false;
this.ucBtnImg15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg15.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg15.TipsText = "";
//
// ucBtnImg16
//
this.ucBtnImg16.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg16.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg16.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg16.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg16.BtnText = "";
this.ucBtnImg16.ConerRadius = 5;
this.ucBtnImg16.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg16.FillColor = System.Drawing.Color.White;
this.ucBtnImg16.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg16.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg16.Image")));
this.ucBtnImg16.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg16.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg16.ImageFontIcons")));
this.ucBtnImg16.IsRadius = true;
this.ucBtnImg16.IsShowRect = true;
this.ucBtnImg16.IsShowTips = false;
this.ucBtnImg16.Location = new System.Drawing.Point(400, 54);
this.ucBtnImg16.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg16.Name = "ucBtnImg16";
this.ucBtnImg16.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
this.ucBtnImg16.RectWidth = 1;
this.ucBtnImg16.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg16.TabIndex = 0;
this.ucBtnImg16.TabStop = false;
this.ucBtnImg16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg16.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg16.TipsText = "";
//
// ucBtnImg17
//
this.ucBtnImg17.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg17.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg17.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg17.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg17.BtnText = "";
this.ucBtnImg17.ConerRadius = 5;
this.ucBtnImg17.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg17.FillColor = System.Drawing.Color.White;
this.ucBtnImg17.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg17.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg17.Image")));
this.ucBtnImg17.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg17.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg17.ImageFontIcons")));
this.ucBtnImg17.IsRadius = true;
this.ucBtnImg17.IsShowRect = true;
this.ucBtnImg17.IsShowTips = false;
this.ucBtnImg17.Location = new System.Drawing.Point(461, 54);
this.ucBtnImg17.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg17.Name = "ucBtnImg17";
this.ucBtnImg17.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
this.ucBtnImg17.RectWidth = 1;
this.ucBtnImg17.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg17.TabIndex = 0;
this.ucBtnImg17.TabStop = false;
this.ucBtnImg17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg17.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg17.TipsText = "";
//
// ucBtnImg18
//
this.ucBtnImg18.BackColor = System.Drawing.Color.Transparent;
this.ucBtnImg18.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnImg18.BtnFont = new System.Drawing.Font("微软雅黑", 17F);
this.ucBtnImg18.BtnForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg18.BtnText = "";
this.ucBtnImg18.ConerRadius = 5;
this.ucBtnImg18.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg18.FillColor = System.Drawing.Color.White;
this.ucBtnImg18.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnImg18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
this.ucBtnImg18.Image = ((System.Drawing.Image)(resources.GetObject("ucBtnImg18.Image")));
this.ucBtnImg18.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg18.ImageFontIcons = ((object)(resources.GetObject("ucBtnImg18.ImageFontIcons")));
this.ucBtnImg18.IsRadius = true;
this.ucBtnImg18.IsShowRect = true;
this.ucBtnImg18.IsShowTips = false;
this.ucBtnImg18.Location = new System.Drawing.Point(523, 54);
this.ucBtnImg18.Margin = new System.Windows.Forms.Padding(0);
this.ucBtnImg18.Name = "ucBtnImg18";
this.ucBtnImg18.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
this.ucBtnImg18.RectWidth = 1;
this.ucBtnImg18.Size = new System.Drawing.Size(47, 32);
this.ucBtnImg18.TabIndex = 0;
this.ucBtnImg18.TabStop = false;
this.ucBtnImg18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.ucBtnImg18.TipsColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(30)))), ((int)(((byte)(99)))));
this.ucBtnImg18.TipsText = "";
//
// ucSplitLine_V3
//
this.ucSplitLine_V3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
this.ucSplitLine_V3.Location = new System.Drawing.Point(582, 11);
this.ucSplitLine_V3.Name = "ucSplitLine_V3";
this.ucSplitLine_V3.Size = new System.Drawing.Size(1, 76);
this.ucSplitLine_V3.TabIndex = 2;
this.ucSplitLine_V3.TabStop = false;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(589, 44);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(29, 12);
this.label1.TabIndex = 3;
this.label1.Text = "测试";
//
// UCTestNavigationMenuOfficeItem
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.Color.Transparent;
this.Controls.Add(this.label1);
this.Controls.Add(this.ucSplitLine_V3);
this.Controls.Add(this.ucSplitLine_V2);
this.Controls.Add(this.ucSplitLine_V1);
this.Controls.Add(this.ucBtnImg4);
this.Controls.Add(this.ucBtnImg3);
this.Controls.Add(this.ucBtnImg2);
this.Controls.Add(this.ucBtnImg10);
this.Controls.Add(this.ucBtnImg9);
this.Controls.Add(this.ucBtnImg8);
this.Controls.Add(this.ucBtnImg7);
this.Controls.Add(this.ucBtnImg6);
this.Controls.Add(this.ucBtnImg18);
this.Controls.Add(this.ucBtnImg14);
this.Controls.Add(this.ucBtnImg17);
this.Controls.Add(this.ucBtnImg13);
this.Controls.Add(this.ucBtnImg16);
this.Controls.Add(this.ucBtnImg12);
this.Controls.Add(this.ucBtnImg15);
this.Controls.Add(this.ucBtnImg11);
this.Controls.Add(this.ucBtnImg5);
this.Controls.Add(this.ucBtnImg1);
this.Name = "UCTestNavigationMenuOfficeItem";
this.Size = new System.Drawing.Size(791, 100);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private HZH_Controls.Controls.UCBtnImg ucBtnImg1;
private HZH_Controls.Controls.UCBtnImg ucBtnImg2;
private HZH_Controls.Controls.UCBtnImg ucBtnImg3;
private HZH_Controls.Controls.UCBtnImg ucBtnImg4;
private HZH_Controls.Controls.UCSplitLine_V ucSplitLine_V1;
private HZH_Controls.Controls.UCBtnImg ucBtnImg5;
private HZH_Controls.Controls.UCBtnImg ucBtnImg6;
private HZH_Controls.Controls.UCBtnImg ucBtnImg7;
private HZH_Controls.Controls.UCBtnImg ucBtnImg8;
private HZH_Controls.Controls.UCBtnImg ucBtnImg9;
private HZH_Controls.Controls.UCBtnImg ucBtnImg10;
private HZH_Controls.Controls.UCSplitLine_V ucSplitLine_V2;
private HZH_Controls.Controls.UCBtnImg ucBtnImg11;
private HZH_Controls.Controls.UCBtnImg ucBtnImg12;
private HZH_Controls.Controls.UCBtnImg ucBtnImg13;
private HZH_Controls.Controls.UCBtnImg ucBtnImg14;
private HZH_Controls.Controls.UCBtnImg ucBtnImg15;
private HZH_Controls.Controls.UCBtnImg ucBtnImg16;
private HZH_Controls.Controls.UCBtnImg ucBtnImg17;
private HZH_Controls.Controls.UCBtnImg ucBtnImg18;
private HZH_Controls.Controls.UCSplitLine_V ucSplitLine_V3;
private System.Windows.Forms.Label label1;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Test.UC
{
public partial class UCTestNavigationMenuOfficeItem : UserControl
{
public UCTestNavigationMenuOfficeItem(string str)
{
InitializeComponent();
label1.Text = str;
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="ucBtnImg1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFtSURBVFhH7ZXRbcMgEIb93gW6QKW+GqfPnSAPVUF5yAbZ
oCt0hcyQJbpFl4Fyx51rHC6HAg9V5V/6FfuA4zMcZNj0Z+Xtbu/tdPHWfDXbmQ9KW6fwPr0GNwXvpu8e
xlzWnCm9LiBOg3Z7Ct2tYJ8fGIRCuhggOGMo1KS0Df8RANrB/m18pFBRDFDTF6UBYKKYNPXhYpUrPesb
nyksSwNYJlxaKtquAHxES5aSdwX4bbv2LYBuNeAPL0/ridlxouJlwwD0qquiBs5Xk0MhCl8HAHOfeL1T
WJa2BdGn9JtuOPzPoBjUCHWdxQAIIWxTJkxUAFgnihN/ki8cT235aegC4N145CSa15MgLK5WWj0KyyoC
FPZdMkxGw1AMQK+6BIB5Geucj+2xAk0AHIdnCssqA+SFdsv4tYsj2QcgJoTBaSk1j0cahmIAbGu9B+4R
g9Orrg0gApxwz+LZB5h2p9qg9HXiwunldWFu2pQ0DD8hJjBCKtesogAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg1.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFtSURBVFhH7ZXRbcMgEIb93gW6QKW+GqfPnSAPVUF5yAbZ
oCt0hcyQJbpFl4Fyx51rHC6HAg9V5V/6FfuA4zMcZNj0Z+Xtbu/tdPHWfDXbmQ9KW6fwPr0GNwXvpu8e
xlzWnCm9LiBOg3Z7Ct2tYJ8fGIRCuhggOGMo1KS0Df8RANrB/m18pFBRDFDTF6UBYKKYNPXhYpUrPesb
nyksSwNYJlxaKtquAHxES5aSdwX4bbv2LYBuNeAPL0/ridlxouJlwwD0qquiBs5Xk0MhCl8HAHOfeL1T
WJa2BdGn9JtuOPzPoBjUCHWdxQAIIWxTJkxUAFgnihN/ki8cT235aegC4N145CSa15MgLK5WWj0KyyoC
FPZdMkxGw1AMQK+6BIB5Geucj+2xAk0AHIdnCssqA+SFdsv4tYsj2QcgJoTBaSk1j0cahmIAbGu9B+4R
g9Orrg0gApxwz+LZB5h2p9qg9HXiwunldWFu2pQ0DD8hJjBCKtesogAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAFtSURBVFhH7ZXRbcMgEIb93gW6QKW+GqfPnSAPVUF5yAbZ
oCt0hcyQJbpFl4Fyx51rHC6HAg9V5V/6FfuA4zMcZNj0Z+Xtbu/tdPHWfDXbmQ9KW6fwPr0GNwXvpu8e
xlzWnCm9LiBOg3Z7Ct2tYJ8fGIRCuhggOGMo1KS0Df8RANrB/m18pFBRDFDTF6UBYKKYNPXhYpUrPesb
nyksSwNYJlxaKtquAHxES5aSdwX4bbv2LYBuNeAPL0/ridlxouJlwwD0qquiBs5Xk0MhCl8HAHOfeL1T
WJa2BdGn9JtuOPzPoBjUCHWdxQAIIWxTJkxUAFgnihN/ki8cT235aegC4N145CSa15MgLK5WWj0KyyoC
FPZdMkxGw1AMQK+6BIB5Geucj+2xAk0AHIdnCssqA+SFdsv4tYsj2QcgJoTBaSk1j0cahmIAbGu9B+4R
g9Orrg0gApxwz+LZB5h2p9qg9HXiwunldWFu2pQ0DD8hJjBCKtesogAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg2.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAFtSURBVFhH7ZXRbcMgEIb93gW6QKW+GqfPnSAPVUF5yAbZ
oCt0hcyQJbpFl4Fyx51rHC6HAg9V5V/6FfuA4zMcZNj0Z+Xtbu/tdPHWfDXbmQ9KW6fwPr0GNwXvpu8e
xlzWnCm9LiBOg3Z7Ct2tYJ8fGIRCuhggOGMo1KS0Df8RANrB/m18pFBRDFDTF6UBYKKYNPXhYpUrPesb
nyksSwNYJlxaKtquAHxES5aSdwX4bbv2LYBuNeAPL0/ridlxouJlwwD0qquiBs5Xk0MhCl8HAHOfeL1T
WJa2BdGn9JtuOPzPoBjUCHWdxQAIIWxTJkxUAFgnihN/ki8cT235aegC4N145CSa15MgLK5WWj0KyyoC
FPZdMkxGw1AMQK+6BIB5Geucj+2xAk0AHIdnCssqA+SFdsv4tYsj2QcgJoTBaSk1j0cahmIAbGu9B+4R
g9Orrg0gApxwz+LZB5h2p9qg9HXiwunldWFu2pQ0DD8hJjBCKtesogAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsEAAA7BAbiRa+0AAAFtSURBVFhH7ZXRbcMgEIb93gW6QKW+GqfPnSAPVUF5yAbZ
oCt0hcyQJbpFl4Fyx51rHC6HAg9V5V/6FfuA4zMcZNj0Z+Xtbu/tdPHWfDXbmQ9KW6fwPr0GNwXvpu8e
xlzWnCm9LiBOg3Z7Ct2tYJ8fGIRCuhggOGMo1KS0Df8RANrB/m18pFBRDFDTF6UBYKKYNPXhYpUrPesb
nyksSwNYJlxaKtquAHxES5aSdwX4bbv2LYBuNeAPL0/ridlxouJlwwD0qquiBs5Xk0MhCl8HAHOfeL1T
WJa2BdGn9JtuOPzPoBjUCHWdxQAIIWxTJkxUAFgnihN/ki8cT235aegC4N145CSa15MgLK5WWj0KyyoC
FPZdMkxGw1AMQK+6BIB5Geucj+2xAk0AHIdnCssqA+SFdsv4tYsj2QcgJoTBaSk1j0cahmIAbGu9B+4R
g9Orrg0gApxwz+LZB5h2p9qg9HXiwunldWFu2pQ0DD8hJjBCKtesogAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg3.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsEAAA7BAbiRa+0AAAFtSURBVFhH7ZXRbcMgEIb93gW6QKW+GqfPnSAPVUF5yAbZ
oCt0hcyQJbpFl4Fyx51rHC6HAg9V5V/6FfuA4zMcZNj0Z+Xtbu/tdPHWfDXbmQ9KW6fwPr0GNwXvpu8e
xlzWnCm9LiBOg3Z7Ct2tYJ8fGIRCuhggOGMo1KS0Df8RANrB/m18pFBRDFDTF6UBYKKYNPXhYpUrPesb
nyksSwNYJlxaKtquAHxES5aSdwX4bbv2LYBuNeAPL0/ridlxouJlwwD0qquiBs5Xk0MhCl8HAHOfeL1T
WJa2BdGn9JtuOPzPoBjUCHWdxQAIIWxTJkxUAFgnihN/ki8cT235aegC4N145CSa15MgLK5WWj0KyyoC
FPZdMkxGw1AMQK+6BIB5Geucj+2xAk0AHIdnCssqA+SFdsv4tYsj2QcgJoTBaSk1j0cahmIAbGu9B+4R
g9Orrg0gApxwz+LZB5h2p9qg9HXiwunldWFu2pQ0DD8hJjBCKtesogAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsAAAA7AAWrWiQkAAAFtSURBVFhH7ZXRbcMgEIb93gW6QKW+GqfPnSAPVUF5yAbZ
oCt0hcyQJbpFl4Fyx51rHC6HAg9V5V/6FfuA4zMcZNj0Z+Xtbu/tdPHWfDXbmQ9KW6fwPr0GNwXvpu8e
xlzWnCm9LiBOg3Z7Ct2tYJ8fGIRCuhggOGMo1KS0Df8RANrB/m18pFBRDFDTF6UBYKKYNPXhYpUrPesb
nyksSwNYJlxaKtquAHxES5aSdwX4bbv2LYBuNeAPL0/ridlxouJlwwD0qquiBs5Xk0MhCl8HAHOfeL1T
WJa2BdGn9JtuOPzPoBjUCHWdxQAIIWxTJkxUAFgnihN/ki8cT235aegC4N145CSa15MgLK5WWj0KyyoC
FPZdMkxGw1AMQK+6BIB5Geucj+2xAk0AHIdnCssqA+SFdsv4tYsj2QcgJoTBaSk1j0cahmIAbGu9B+4R
g9Orrg0gApxwz+LZB5h2p9qg9HXiwunldWFu2pQ0DD8hJjBCKtesogAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg4.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsAAAA7AAWrWiQkAAAFtSURBVFhH7ZXRbcMgEIb93gW6QKW+GqfPnSAPVUF5yAbZ
oCt0hcyQJbpFl4Fyx51rHC6HAg9V5V/6FfuA4zMcZNj0Z+Xtbu/tdPHWfDXbmQ9KW6fwPr0GNwXvpu8e
xlzWnCm9LiBOg3Z7Ct2tYJ8fGIRCuhggOGMo1KS0Df8RANrB/m18pFBRDFDTF6UBYKKYNPXhYpUrPesb
nyksSwNYJlxaKtquAHxES5aSdwX4bbv2LYBuNeAPL0/ridlxouJlwwD0qquiBs5Xk0MhCl8HAHOfeL1T
WJa2BdGn9JtuOPzPoBjUCHWdxQAIIWxTJkxUAFgnihN/ki8cT235aegC4N145CSa15MgLK5WWj0KyyoC
FPZdMkxGw1AMQK+6BIB5Geucj+2xAk0AHIdnCssqA+SFdsv4tYsj2QcgJoTBaSk1j0cahmIAbGu9B+4R
g9Orrg0gApxwz+LZB5h2p9qg9HXiwunldWFu2pQ0DD8hJjBCKtesogAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg5.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg5.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg6.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg6.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg7.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsEAAA7BAbiRa+0AAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg7.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsEAAA7BAbiRa+0AAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg8.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsAAAA7AAWrWiQkAAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg8.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsAAAA7AAWrWiQkAAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg9.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr8AAA6/ATgFUyQAAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg9.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr8AAA6/ATgFUyQAAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg10.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr4AAA6+AepCscAAAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg10.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr4AAA6+AepCscAAAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
2oFCRCprMTBx0Y9aMTWM+Mj7WqXERT8WAguB7yIQsA09COyOuJAED6WxBNwBhnYgKDHvjykExMQ0QBSd
l5BeCfYzov881kK9Hji9b3MFz8WpLA+L+nZwUTWLlhTnwkLAEcCnu4IDgfxzBPCMgIibRUbFN8dt+I8R
RU8B068nZ+Z/8gAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucBtnImg11.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg11.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg12.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg12.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg13.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsEAAA7BAbiRa+0AAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg13.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsEAAA7BAbiRa+0AAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg14.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsAAAA7AAWrWiQkAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg14.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsAAAA7AAWrWiQkAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg15.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg15.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg16.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsEAAA7BAbiRa+0AAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg16.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsEAAA7BAbiRa+0AAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg17.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsAAAA7AAWrWiQkAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg17.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsAAAA7AAWrWiQkAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg18.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr8AAA6/ATgFUyQAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
<data name="ucBtnImg18.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr8AAA6/ATgFUyQAAAEySURBVFhH7VXtDYIwEOW/C7iAib9MwAEcxA3cgBVYgRmc
wcjHEE4g4BB6116VlBbaA0JMeMkL5C5393q9tsGKFX+NsKivUVE9kGFZZYes2ZFrfkDROCrrd5soiNzz
wygAukDuaWFqrauA0dsSFlUiCsi9jsk8KADiziJGs3sB1ask7SKU3CjgmD9P+O34IIbSukNMuZboS02Y
1aYIPkrrDtNK2OQIiPJXNIkIKM7aAgVIEPe2t59peG+2lIoPTNI7ExrVQFL4eHh3QbY9oXA+bMfKmVL0
hdL5AVfQScgk651Y/BhaO4D7axJnswPZLyXt4a8ADRb8W98C4WvHAdknQg0hrqB9nvsEIPa3egO2VMaO
uIRsGBIwOxYXgG3tCJji4vGBECEHDrvBu2xWrFgWQfAB1kEnZKRe2KIAAAAASUVORK5CYII=
</value>
</data>
</root>
\ No newline at end of file \ No newline at end of file
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!