Commit 2d9497ce HZH

Add Theme ,But it has not been completed yet.

1 个父辈 3f45e622
......@@ -119,15 +119,6 @@ namespace HZH_Controls.Controls
{
if (this.BtnClick != null)
BtnClick(this, e);
}
public override void ResetTheme(ThemeEntity theme)
{
if (theme.BackColor.HasValue && theme.BackColor.Value != Color.Empty)
{
BtnBackColor = theme.BackColor.Value;
}
}
}
}
}
......@@ -30,17 +30,19 @@ namespace HZH_Controls.Controls
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
this.SuspendLayout();
//
// UCControlBase
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
base.SuspendLayout();
base.AutoScaleDimensions = new SizeF(9f, 20f);
base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.DoubleBuffered = true;
this.Font = new Font("微软雅黑", 15f, FontStyle.Regular, GraphicsUnit.Pixel);
base.Margin = new Padding(4, 5, 4, 5);
base.Name = "UCBase";
base.Size = new Size(237, 154);
base.ResumeLayout(false);
this.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "UCControlBase";
this.Size = new System.Drawing.Size(237, 154);
this.Load += new System.EventHandler(this.UCControlBase_Load);
this.ResumeLayout(false);
}
#endregion
......
......@@ -12,11 +12,13 @@ using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Reflection;
using HZH_Controls.Theme;
namespace HZH_Controls.Controls
{
[Designer("System.Windows.Forms.Design.ParentControlDesigner, System.Design", typeof(System.ComponentModel.Design.IDesigner))]
public partial class UCControlBase : UserControl, IContainerControl, ITheme
public partial class UCControlBase : UserControl, IContainerControl
{
private bool _isRadius = false;
......@@ -201,15 +203,42 @@ namespace HZH_Controls.Controls
}
}
public virtual void ResetTheme(ThemeEntity theme)
private void UCControlBase_Load(object sender, EventArgs e)
{
}
string ThemeType = "";
/*
* 新拖动的控件为了继承已经选择的主题,需要再加载后根据主题绘制属性
* 1.循环所有页面控件,找到样式控件
* 2.得到样式控件主题
* 3.调用实现类
*/
try
{
//1.循环所有页面控件,找到样式控件
foreach (var item in this.Container.Components)
{
if (ThemeType == "")
{
try
{
HZH_Controls.Theme.UCTheme con = (HZH_Controls.Theme.UCTheme)item;
//2.得到样式控件主题
ThemeType = con.ThemeType.ToString();
break;
}
catch { }
}
}
}
catch { }
[Description("是否启用主题"), Category("自定义")]
public bool EnabledTheme
{
get;
set;
if (ThemeType != "")
{
// 3.调用实现类
Assembly assembly = Assembly.GetExecutingAssembly();
IControlTheme uct = (IControlTheme)assembly.CreateInstance("HZH_Controls.Theme." + ThemeType);
uct.ControlTheme(this);
}
}
}
}
<?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
......@@ -47,8 +47,7 @@
this.btnOK.BtnText = "确定";
this.btnOK.ConerRadius = 5;
this.btnOK.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnOK.Dock = System.Windows.Forms.DockStyle.Fill;
this.btnOK.EnabledTheme = false;
this.btnOK.Dock = System.Windows.Forms.DockStyle.Fill;
this.btnOK.FillColor = System.Drawing.Color.White;
this.btnOK.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.btnOK.IsRadius = false;
......@@ -75,7 +74,6 @@
this.btnCancel.ConerRadius = 5;
this.btnCancel.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnCancel.Dock = System.Windows.Forms.DockStyle.Fill;
this.btnCancel.EnabledTheme = false;
this.btnCancel.FillColor = System.Drawing.Color.White;
this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.btnCancel.IsRadius = false;
......
......@@ -108,7 +108,6 @@
this.btnOK.ConerRadius = 5;
this.btnOK.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnOK.Dock = System.Windows.Forms.DockStyle.Fill;
this.btnOK.EnabledTheme = false;
this.btnOK.FillColor = System.Drawing.Color.White;
this.btnOK.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.btnOK.IsRadius = false;
......@@ -135,7 +134,6 @@
this.btnCancel.ConerRadius = 5;
this.btnCancel.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnCancel.Dock = System.Windows.Forms.DockStyle.Right;
this.btnCancel.EnabledTheme = false;
this.btnCancel.FillColor = System.Drawing.Color.White;
this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.btnCancel.IsRadius = false;
......
......@@ -396,7 +396,6 @@
<Compile Include="Forms\FrmWithTitle.Designer.cs">
<DependentUpon>FrmWithTitle.cs</DependentUpon>
</Compile>
<Compile Include="Helpers\ITheme.cs" />
<Compile Include="Helpers\MouseHook.cs" />
<Compile Include="Helpers\NativeMethods.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
......@@ -406,6 +405,12 @@
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Helpers\TextInputType.cs" />
<Compile Include="Theme\Blue.cs" />
<Compile Include="Theme\Default.cs" />
<Compile Include="Theme\IControlTheme.cs" />
<Compile Include="Theme\UCTheme.cs">
<SubType>Component</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Controls\BtnsGroup\UCBtnsGroup.resx">
......@@ -534,6 +539,9 @@
<EmbeddedResource Include="Controls\Text\UCTextBoxEx.resx">
<DependentUpon>UCTextBoxEx.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Controls\UCControlBase.resx">
<DependentUpon>UCControlBase.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Forms\FrmAnchor.resx">
<DependentUpon>FrmAnchor.cs</DependentUpon>
</EmbeddedResource>
......
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
namespace HZH_Controls
{
public interface ITheme
{
/// <summary>
/// 重置主题
/// </summary>
/// <param name="theme"></param>
void ResetTheme(ThemeEntity theme);
/// <summary>
/// 是否禁用一键换肤,默认禁用
/// </summary>
bool EnabledTheme { get; set; }
}
public class ThemeEntity
{
/// <summary>
/// 边框颜色
/// </summary>
public Color? BorderColor { get; set; }
/// <summary>
/// 填充颜色
/// </summary>
public Color? FillColor { get; set; }
/// <summary>
/// 背景色
/// </summary>
public Color? BackColor { get; set; }
/// <summary>
/// 前景色
/// </summary>
public Color? ForeColor { get; set; }
/// <summary>
/// 字体颜色
/// </summary>
public Color? FontColor { get; set; }
/// <summary>
/// 选中颜色
/// </summary>
public Color? SelectedColor { get; set; }
/// <summary>
/// 选中字体颜色
/// </summary>
public Color? SelectedFontColor { get; set; }
}
}
using HZH_Controls.Controls;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HZH_Controls.Theme
{
/// <summary>
/// @北京-没想好
/// 主题类-蓝色
/// </summary>
public class Blue : Default
{
public override void ControlTheme(object control)
{
base.ControlTheme(control);
//按控件设置主题
//如果是按钮
if (control.GetType().Name.ToString() == "UCBtnExt") {
UCBtnExt c = (UCBtnExt)control;
c.FillColor = System.Drawing.Color.Blue;
}
//如果是按钮
if (control.GetType().Name.ToString() == "UCBtnFillet") {
UCBtnFillet c = (UCBtnFillet)control;
c.FillColor = System.Drawing.Color.Blue;
c.ForeColor = System.Drawing.Color.White;
}
//如果是XXX
}
}
}
using HZH_Controls.Controls;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HZH_Controls.Theme
{
/// <summary>
/// @北京-没想好
/// 默认主题
/// </summary>
public class Default : IControlTheme
{
public virtual void ControlTheme(object control)
{
if (control.GetType().Name.ToString() == "UCBtnExt")
{
UCBtnExt c = (UCBtnExt)control;
c.FillColor = System.Drawing.Color.Red;
c.BtnForeColor = System.Drawing.Color.White;
}
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HZH_Controls.Theme
{
/// <summary>
/// @北京-没想好
/// 所有主题实现此样式
/// </summary>
public interface IControlTheme
{
/// <summary>
/// 根据主题配置当前控件样式
/// </summary>
/// <param name="control"></param>
void ControlTheme(object control);
}
}
using HZH_Controls.Controls;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Text;
/*
* 后续
* 1.用户自定义样式类实现,可以继承已有主题或者实现主题接口IControlTheme,怎让用户自定义类神效
* 2.控件单独样式和主题的冲突
*/
/// <summary>
/// 全局主题样式
/// 分为两步分:
/// 1.循环所有页面已经存在的控件实现样式修改(实现方法:ThemeRefresh())
/// 2.新拖动的控件继承已经选择的主题样式(实现方法:UCControlBase.UCControlBase_Load())
/// @北京-没想好
/// </summary>
namespace HZH_Controls.Theme
{
/// <summary>
/// 样式组件
/// </summary>
[ToolboxBitmap(typeof(UCTheme),"Resources.UCTheme.bmp")]
public class UCTheme: Component
{
/// <summary>
/// 属性枚举
/// </summary>
public enum ThemeTypes
{
Default,
Blue
}
/// <summary>
/// 样式
/// </summary>
private ThemeTypes _ThemeType = ThemeTypes.Default;
/// <summary>
/// 主题样式
/// </summary>
[Description("主题"), Category("自定义")]
public virtual ThemeTypes ThemeType
{
get
{
return this._ThemeType;
}
set
{
this._ThemeType = value;
ThemeRefresh();
}
}
/// <summary>
/// 刷新样式
/// </summary>
private void ThemeRefresh()
{
//循环所有页面已经存在的控件
foreach (var item in this.Container.Components)
{
try
{
System.Windows.Forms.Control con = (System.Windows.Forms.Control)item;
Assembly assembly = Assembly.GetExecutingAssembly();
Object obj = assembly.CreateInstance(con.GetType().FullName);
//判断控件基类是否来自UCControlBase
if (typeof(UCControlBase).IsAssignableFrom(obj.GetType()))
{
//根据对应的主题找到实现类
IControlTheme uct = (IControlTheme)assembly.CreateInstance("HZH_Controls.Theme." + this._ThemeType);
uct.ControlTheme(con);
}
}
catch { }
}
}
}
}
......@@ -70,6 +70,7 @@
this.ucRadioButton2 = new HZH_Controls.Controls.UCRadioButton();
this.ucRadioButton1 = new HZH_Controls.Controls.UCRadioButton();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.ucDropDownBtn1 = new HZH_Controls.Controls.Btn.UCDropDownBtn();
this.ucControlBase1 = new HZH_Controls.Controls.UCControlBase();
this.ucBtnExt3 = new HZH_Controls.Controls.UCBtnExt();
this.ucBtnExt4 = new HZH_Controls.Controls.UCBtnExt();
......@@ -90,7 +91,6 @@
this.button10 = new System.Windows.Forms.Button();
this.ucSplitLine_V1 = new HZH_Controls.Controls.UCSplitLine_V();
this.ucSplitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucDropDownBtn1 = new HZH_Controls.Controls.Btn.UCDropDownBtn();
this.groupBox1.SuspendLayout();
this.groupBox9.SuspendLayout();
this.groupBox7.SuspendLayout();
......@@ -246,7 +246,6 @@
this.ucDatePickerExt3.BackColor = System.Drawing.Color.Transparent;
this.ucDatePickerExt3.ConerRadius = 5;
this.ucDatePickerExt3.CurrentTime = new System.DateTime(2019, 8, 8, 15, 17, 11, 0);
this.ucDatePickerExt3.EnabledTheme = false;
this.ucDatePickerExt3.FillColor = System.Drawing.Color.Transparent;
this.ucDatePickerExt3.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucDatePickerExt3.IsRadius = true;
......@@ -267,7 +266,6 @@
this.ucDatePickerExt2.BackColor = System.Drawing.Color.Transparent;
this.ucDatePickerExt2.ConerRadius = 5;
this.ucDatePickerExt2.CurrentTime = new System.DateTime(2019, 8, 8, 15, 17, 11, 0);
this.ucDatePickerExt2.EnabledTheme = false;
this.ucDatePickerExt2.FillColor = System.Drawing.Color.Transparent;
this.ucDatePickerExt2.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucDatePickerExt2.IsRadius = true;
......@@ -288,7 +286,6 @@
this.ucDatePickerExt1.BackColor = System.Drawing.Color.Transparent;
this.ucDatePickerExt1.ConerRadius = 5;
this.ucDatePickerExt1.CurrentTime = new System.DateTime(2019, 8, 8, 15, 17, 11, 0);
this.ucDatePickerExt1.EnabledTheme = false;
this.ucDatePickerExt1.FillColor = System.Drawing.Color.Transparent;
this.ucDatePickerExt1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucDatePickerExt1.IsRadius = true;
......@@ -322,7 +319,6 @@
this.ucComboBox2.BoxStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.ucComboBox2.ConerRadius = 5;
this.ucComboBox2.DropPanelHeight = -1;
this.ucComboBox2.EnabledTheme = false;
this.ucComboBox2.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
this.ucComboBox2.Font = new System.Drawing.Font("微软雅黑", 12F);
this.ucComboBox2.IsRadius = false;
......@@ -347,7 +343,6 @@
this.ucComboBox1.BoxStyle = System.Windows.Forms.ComboBoxStyle.DropDown;
this.ucComboBox1.ConerRadius = 5;
this.ucComboBox1.DropPanelHeight = -1;
this.ucComboBox1.EnabledTheme = false;
this.ucComboBox1.FillColor = System.Drawing.Color.White;
this.ucComboBox1.Font = new System.Drawing.Font("微软雅黑", 12F);
this.ucComboBox1.IsRadius = false;
......@@ -458,7 +453,6 @@
this.ucTextBoxEx4.ConerRadius = 5;
this.ucTextBoxEx4.Cursor = System.Windows.Forms.Cursors.IBeam;
this.ucTextBoxEx4.DecLength = 2;
this.ucTextBoxEx4.EnabledTheme = false;
this.ucTextBoxEx4.FillColor = System.Drawing.Color.Empty;
this.ucTextBoxEx4.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucTextBoxEx4.InputText = "";
......@@ -499,7 +493,6 @@
this.ucTextBoxEx3.ConerRadius = 5;
this.ucTextBoxEx3.Cursor = System.Windows.Forms.Cursors.IBeam;
this.ucTextBoxEx3.DecLength = 2;
this.ucTextBoxEx3.EnabledTheme = false;
this.ucTextBoxEx3.FillColor = System.Drawing.Color.Empty;
this.ucTextBoxEx3.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucTextBoxEx3.InputText = "手写键盘";
......@@ -540,7 +533,6 @@
this.ucTextBoxEx2.ConerRadius = 5;
this.ucTextBoxEx2.Cursor = System.Windows.Forms.Cursors.IBeam;
this.ucTextBoxEx2.DecLength = 2;
this.ucTextBoxEx2.EnabledTheme = false;
this.ucTextBoxEx2.FillColor = System.Drawing.Color.Empty;
this.ucTextBoxEx2.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucTextBoxEx2.InputText = "英文键盘";
......@@ -581,7 +573,6 @@
this.ucTextBoxEx1.ConerRadius = 5;
this.ucTextBoxEx1.Cursor = System.Windows.Forms.Cursors.IBeam;
this.ucTextBoxEx1.DecLength = 2;
this.ucTextBoxEx1.EnabledTheme = false;
this.ucTextBoxEx1.FillColor = System.Drawing.Color.Empty;
this.ucTextBoxEx1.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucTextBoxEx1.InputText = "数字键盘";
......@@ -788,6 +779,39 @@
this.groupBox2.TabStop = false;
this.groupBox2.Text = "按钮";
//
// ucDropDownBtn1
//
this.ucDropDownBtn1.BackColor = System.Drawing.Color.White;
this.ucDropDownBtn1.BtnBackColor = System.Drawing.Color.White;
this.ucDropDownBtn1.BtnFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucDropDownBtn1.BtnForeColor = System.Drawing.Color.White;
this.ucDropDownBtn1.Btns = new string[] {
"按钮1",
"按钮2",
"按钮3"};
this.ucDropDownBtn1.BtnText = "测试下拉按钮";
this.ucDropDownBtn1.ConerRadius = 5;
this.ucDropDownBtn1.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucDropDownBtn1.DropPanelHeight = -1;
this.ucDropDownBtn1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucDropDownBtn1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucDropDownBtn1.ForeColor = System.Drawing.Color.White;
this.ucDropDownBtn1.Image = ((System.Drawing.Image)(resources.GetObject("ucDropDownBtn1.Image")));
this.ucDropDownBtn1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.ucDropDownBtn1.IsRadius = true;
this.ucDropDownBtn1.IsShowRect = true;
this.ucDropDownBtn1.IsShowTips = false;
this.ucDropDownBtn1.Location = new System.Drawing.Point(18, 329);
this.ucDropDownBtn1.Margin = new System.Windows.Forms.Padding(2);
this.ucDropDownBtn1.Name = "ucDropDownBtn1";
this.ucDropDownBtn1.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucDropDownBtn1.RectWidth = 1;
this.ucDropDownBtn1.Size = new System.Drawing.Size(143, 39);
this.ucDropDownBtn1.TabIndex = 14;
this.ucDropDownBtn1.TabStop = false;
this.ucDropDownBtn1.TipsText = "";
this.ucDropDownBtn1.BtnClick += new System.EventHandler(this.ucDropDownBtn1_BtnClick);
//
// ucControlBase1
//
this.ucControlBase1.BackColor = System.Drawing.Color.Transparent;
......@@ -795,7 +819,6 @@
this.ucControlBase1.Controls.Add(this.ucBtnExt3);
this.ucControlBase1.Controls.Add(this.ucBtnExt4);
this.ucControlBase1.Controls.Add(this.ucBtnExt5);
this.ucControlBase1.EnabledTheme = false;
this.ucControlBase1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucControlBase1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucControlBase1.IsRadius = true;
......@@ -818,8 +841,7 @@
this.ucBtnExt3.ConerRadius = 5;
this.ucBtnExt3.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnExt3.Dock = System.Windows.Forms.DockStyle.Left;
this.ucBtnExt3.EnabledTheme = false;
this.ucBtnExt3.FillColor = System.Drawing.Color.Transparent;
this.ucBtnExt3.FillColor = System.Drawing.Color.Red;
this.ucBtnExt3.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnExt3.IsRadius = false;
this.ucBtnExt3.IsShowRect = false;
......@@ -844,8 +866,7 @@
this.ucBtnExt4.ConerRadius = 5;
this.ucBtnExt4.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnExt4.Dock = System.Windows.Forms.DockStyle.Left;
this.ucBtnExt4.EnabledTheme = false;
this.ucBtnExt4.FillColor = System.Drawing.Color.Transparent;
this.ucBtnExt4.FillColor = System.Drawing.Color.Red;
this.ucBtnExt4.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnExt4.IsRadius = false;
this.ucBtnExt4.IsShowRect = false;
......@@ -870,8 +891,7 @@
this.ucBtnExt5.ConerRadius = 5;
this.ucBtnExt5.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnExt5.Dock = System.Windows.Forms.DockStyle.Left;
this.ucBtnExt5.EnabledTheme = false;
this.ucBtnExt5.FillColor = System.Drawing.Color.Transparent;
this.ucBtnExt5.FillColor = System.Drawing.Color.Red;
this.ucBtnExt5.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnExt5.IsRadius = false;
this.ucBtnExt5.IsShowRect = false;
......@@ -895,7 +915,6 @@
this.ucBtnImg1.BtnText = " 按钮4";
this.ucBtnImg1.ConerRadius = 10;
this.ucBtnImg1.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnImg1.EnabledTheme = false;
this.ucBtnImg1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
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)))));
......@@ -920,9 +939,9 @@
this.ucBtnFillet1.BtnImage = ((System.Drawing.Image)(resources.GetObject("ucBtnFillet1.BtnImage")));
this.ucBtnFillet1.BtnText = "按钮3 ";
this.ucBtnFillet1.ConerRadius = 10;
this.ucBtnFillet1.EnabledTheme = false;
this.ucBtnFillet1.FillColor = System.Drawing.Color.Transparent;
this.ucBtnFillet1.FillColor = System.Drawing.Color.Blue;
this.ucBtnFillet1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnFillet1.ForeColor = System.Drawing.Color.White;
this.ucBtnFillet1.IsRadius = true;
this.ucBtnFillet1.IsShowRect = true;
this.ucBtnFillet1.Location = new System.Drawing.Point(20, 145);
......@@ -938,12 +957,11 @@
this.ucBtnExt2.BackColor = System.Drawing.Color.Transparent;
this.ucBtnExt2.BtnBackColor = System.Drawing.Color.Transparent;
this.ucBtnExt2.BtnFont = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ucBtnExt2.BtnForeColor = System.Drawing.Color.Black;
this.ucBtnExt2.BtnForeColor = System.Drawing.Color.White;
this.ucBtnExt2.BtnText = "按钮2";
this.ucBtnExt2.ConerRadius = 10;
this.ucBtnExt2.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnExt2.EnabledTheme = false;
this.ucBtnExt2.FillColor = System.Drawing.Color.White;
this.ucBtnExt2.FillColor = System.Drawing.Color.Red;
this.ucBtnExt2.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnExt2.ForeColor = System.Drawing.Color.White;
this.ucBtnExt2.IsRadius = true;
......@@ -968,8 +986,7 @@
this.ucBtnExt1.BtnText = "按钮1";
this.ucBtnExt1.ConerRadius = 10;
this.ucBtnExt1.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucBtnExt1.EnabledTheme = false;
this.ucBtnExt1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucBtnExt1.FillColor = System.Drawing.Color.Red;
this.ucBtnExt1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucBtnExt1.ForeColor = System.Drawing.Color.White;
this.ucBtnExt1.IsRadius = true;
......@@ -1118,40 +1135,6 @@
this.ucSplitLine_H1.TabIndex = 8;
this.ucSplitLine_H1.TabStop = false;
//
// ucDropDownBtn1
//
this.ucDropDownBtn1.BackColor = System.Drawing.Color.White;
this.ucDropDownBtn1.BtnBackColor = System.Drawing.Color.White;
this.ucDropDownBtn1.BtnFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucDropDownBtn1.BtnForeColor = System.Drawing.Color.White;
this.ucDropDownBtn1.Btns = new string[] {
"按钮1",
"按钮2",
"按钮3"};
this.ucDropDownBtn1.BtnText = "测试下拉按钮";
this.ucDropDownBtn1.ConerRadius = 5;
this.ucDropDownBtn1.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucDropDownBtn1.DropPanelHeight = -1;
this.ucDropDownBtn1.EnabledTheme = false;
this.ucDropDownBtn1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucDropDownBtn1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucDropDownBtn1.ForeColor = System.Drawing.Color.White;
this.ucDropDownBtn1.Image = ((System.Drawing.Image)(resources.GetObject("ucDropDownBtn1.Image")));
this.ucDropDownBtn1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.ucDropDownBtn1.IsRadius = true;
this.ucDropDownBtn1.IsShowRect = true;
this.ucDropDownBtn1.IsShowTips = false;
this.ucDropDownBtn1.Location = new System.Drawing.Point(18, 329);
this.ucDropDownBtn1.Margin = new System.Windows.Forms.Padding(2);
this.ucDropDownBtn1.Name = "ucDropDownBtn1";
this.ucDropDownBtn1.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucDropDownBtn1.RectWidth = 1;
this.ucDropDownBtn1.Size = new System.Drawing.Size(143, 39);
this.ucDropDownBtn1.TabIndex = 14;
this.ucDropDownBtn1.TabStop = false;
this.ucDropDownBtn1.TipsText = "";
this.ucDropDownBtn1.BtnClick += new System.EventHandler(this.ucDropDownBtn1_BtnClick);
//
// Form1
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
......
......@@ -120,7 +120,46 @@
<metadata name="timer1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="treeViewEx1.LstTips" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAPcBbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1u
ZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNj
b3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdh
NWM1NjE5MzRlMDg5XV0sIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwg
UHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQwDAAAAmgFtc2NvcmxpYiwgVmVyc2lvbj00LjAu
MC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXSwgbXNj
b3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdh
NWM1NjE5MzRlMDg5BQEAAAA2U3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuRGljdGlvbmFyeWAyW1tT
eXN0ZW0uU3RyaW5nAwAAAAdWZXJzaW9uCENvbXBhcmVyCEhhc2hTaXplAAQACENTeXN0ZW0uQ29sbGVj
dGlvbnMuR2VuZXJpYy5HZW5lcmljRXF1YWxpdHlDb21wYXJlcmAxW1tTeXN0ZW0uU3RyaW5nAwAAAAgC
AAAAAAAAAAkEAAAAAAAAAAUEAAAAQ1N5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLkdlbmVyaWNFcXVh
bGl0eUNvbXBhcmVyYDFbW1N5c3RlbS5TdHJpbmcAAAAAAwAAAAs=
</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="treeViewEx1.NodeDownPic" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAzSURBVDhPYxg+YObMmf9BGMqlHIwaSDkYhgbCNFCKocbRwEBCgGQNhMCogZSD4WIgAwMAGe+9
qQatewQAAAAASUVORK5CYII=
</value>
</data>
<data name="treeViewEx1.NodeUpPic" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAiSURBVDhPYxgFo2AUkAJmzpz5nxoYahwNDBwFo2DAAAMDAFv8ZGmGIVPvAAAAAElFTkSuQmCC
</value>
</data>
<data name="treeViewEx1.TipImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAADmSURBVDhPrZRNDoIwEIXH2+gNpEBI1OgCqufTJRdxyRE0Ue5gjBvcjI/amogDUuUlXyDz81KG
tiSJtZqBLevwBCoL3hHL4rktaxfrYIyGPeAvoCYY27Z3sY4TFFwbDV2gNk5s+1NmJVl4EYq7MT12ZUw0
QrD4KOpPUXsQb6KFkPQDHsTraCcmfYAH4TvPYtIHeGDQZo/IBf2paiOfX96GMTo2gr9QwkjlQsITlROn
wUpOepCp5XAb0uzuf45IOp0YE6dBDq2TvUb6fCZqWq4RJzMzDM8enRLLv+N5AwcTq3NuJi8RPQApRqhG
KfUq3QAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucDropDownBtn1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAA4AAAAYCAYAAADKx8xXAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
......@@ -168,45 +207,6 @@
QmCC
</value>
</data>
<data name="treeViewEx1.LstTips" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAPcBbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1u
ZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNj
b3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdh
NWM1NjE5MzRlMDg5XV0sIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwg
UHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQwDAAAAmgFtc2NvcmxpYiwgVmVyc2lvbj00LjAu
MC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXSwgbXNj
b3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdh
NWM1NjE5MzRlMDg5BQEAAAA2U3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuRGljdGlvbmFyeWAyW1tT
eXN0ZW0uU3RyaW5nAwAAAAdWZXJzaW9uCENvbXBhcmVyCEhhc2hTaXplAAQACENTeXN0ZW0uQ29sbGVj
dGlvbnMuR2VuZXJpYy5HZW5lcmljRXF1YWxpdHlDb21wYXJlcmAxW1tTeXN0ZW0uU3RyaW5nAwAAAAgC
AAAAAAAAAAkEAAAAAAAAAAUEAAAAQ1N5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLkdlbmVyaWNFcXVh
bGl0eUNvbXBhcmVyYDFbW1N5c3RlbS5TdHJpbmcAAAAAAwAAAAs=
</value>
</data>
<data name="treeViewEx1.NodeDownPic" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAzSURBVDhPYxg+YObMmf9BGMqlHIwaSDkYhgbCNFCKocbRwEBCgGQNhMCogZSD4WIgAwMAGe+9
qQatewQAAAAASUVORK5CYII=
</value>
</data>
<data name="treeViewEx1.NodeUpPic" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAiSURBVDhPYxgFo2AUkAJmzpz5nxoYahwNDBwFo2DAAAMDAFv8ZGmGIVPvAAAAAElFTkSuQmCC
</value>
</data>
<data name="treeViewEx1.TipImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAADmSURBVDhPrZRNDoIwEIXH2+gNpEBI1OgCqufTJRdxyRE0Ue5gjBvcjI/amogDUuUlXyDz81KG
tiSJtZqBLevwBCoL3hHL4rktaxfrYIyGPeAvoCYY27Z3sY4TFFwbDV2gNk5s+1NmJVl4EYq7MT12ZUw0
QrD4KOpPUXsQb6KFkPQDHsTraCcmfYAH4TvPYtIHeGDQZo/IBf2paiOfX96GMTo2gr9QwkjlQsITlROn
wUpOepCp5XAb0uzuf45IOp0YE6dBDq2TvUb6fCZqWq4RJzMzDM8enRLLv+N5AwcTq3NuJi8RPQApRqhG
KfUq3QAAAABJRU5ErkJggg==
</value>
</data>
<data name="ucPagerControl21.DataSource" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAJoBbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1u
......
......@@ -150,7 +150,6 @@
this.ucDropDownBtn1.ConerRadius = 5;
this.ucDropDownBtn1.Cursor = System.Windows.Forms.Cursors.Hand;
this.ucDropDownBtn1.DropPanelHeight = -1;
this.ucDropDownBtn1.EnabledTheme = false;
this.ucDropDownBtn1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(58)))));
this.ucDropDownBtn1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucDropDownBtn1.ForeColor = System.Drawing.Color.White;
......@@ -174,7 +173,6 @@
//
this.ucProcessWave2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(229)))), ((int)(((byte)(250)))));
this.ucProcessWave2.ConerRadius = 0;
this.ucProcessWave2.EnabledTheme = false;
this.ucProcessWave2.FillColor = System.Drawing.Color.Empty;
this.ucProcessWave2.Font = new System.Drawing.Font("微软雅黑", 30F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucProcessWave2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
......@@ -196,7 +194,6 @@
//
this.ucProcessWave1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(229)))), ((int)(((byte)(250)))));
this.ucProcessWave1.ConerRadius = 0;
this.ucProcessWave1.EnabledTheme = false;
this.ucProcessWave1.FillColor = System.Drawing.Color.Empty;
this.ucProcessWave1.Font = new System.Drawing.Font("微软雅黑", 30F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucProcessWave1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
......@@ -217,7 +214,6 @@
// ucWaveWithSource1
//
this.ucWaveWithSource1.ConerRadius = 10;
this.ucWaveWithSource1.EnabledTheme = false;
this.ucWaveWithSource1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(229)))), ((int)(((byte)(250)))));
this.ucWaveWithSource1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucWaveWithSource1.GridLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(73)))), ((int)(((byte)(119)))), ((int)(((byte)(232)))));
......@@ -471,7 +467,6 @@
this.ucPanelTitle1.BackColor = System.Drawing.Color.Transparent;
this.ucPanelTitle1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(73)))), ((int)(((byte)(119)))), ((int)(((byte)(232)))));
this.ucPanelTitle1.ConerRadius = 10;
this.ucPanelTitle1.EnabledTheme = false;
this.ucPanelTitle1.FillColor = System.Drawing.Color.White;
this.ucPanelTitle1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.ucPanelTitle1.IsRadius = true;
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!