2021-08-27 10:38:48 +08:00
|
|
|
|
namespace Sunny.UI.Demo
|
2020-06-26 15:13:36 +08:00
|
|
|
|
{
|
|
|
|
|
partial class FDoughnutChart
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required designer variable.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Clean up any resources being used.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (disposing && (components != null))
|
|
|
|
|
{
|
|
|
|
|
components.Dispose();
|
|
|
|
|
}
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required method for Designer support - do not modify
|
|
|
|
|
/// the contents of this method with the code editor.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
|
|
|
|
this.DoughnutChart = new Sunny.UI.UIDoughnutChart();
|
|
|
|
|
this.uiSymbolButton1 = new Sunny.UI.UISymbolButton();
|
|
|
|
|
this.uiImageButton3 = new Sunny.UI.UIImageButton();
|
|
|
|
|
this.uiImageButton2 = new Sunny.UI.UIImageButton();
|
|
|
|
|
this.uiImageButton1 = new Sunny.UI.UIImageButton();
|
2021-07-21 11:20:08 +08:00
|
|
|
|
this.uiSymbolButton2 = new Sunny.UI.UISymbolButton();
|
2020-06-26 15:13:36 +08:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.uiImageButton3)).BeginInit();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.uiImageButton2)).BeginInit();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.uiImageButton1)).BeginInit();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// DoughnutChart
|
|
|
|
|
//
|
|
|
|
|
this.DoughnutChart.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(244)))));
|
2023-09-19 11:01:41 +08:00
|
|
|
|
this.DoughnutChart.Font = new System.Drawing.Font("宋体", 12F);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.DoughnutChart.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54)))));
|
2021-08-16 23:05:32 +08:00
|
|
|
|
this.DoughnutChart.Location = new System.Drawing.Point(30, 55);
|
2021-07-21 11:20:08 +08:00
|
|
|
|
this.DoughnutChart.MinimumSize = new System.Drawing.Size(1, 1);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.DoughnutChart.Name = "DoughnutChart";
|
2021-08-16 23:05:32 +08:00
|
|
|
|
this.DoughnutChart.Size = new System.Drawing.Size(670, 430);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.DoughnutChart.TabIndex = 0;
|
|
|
|
|
this.DoughnutChart.Text = "uiDoughnutChart1";
|
|
|
|
|
//
|
|
|
|
|
// uiSymbolButton1
|
|
|
|
|
//
|
|
|
|
|
this.uiSymbolButton1.Cursor = System.Windows.Forms.Cursors.Hand;
|
2023-09-19 11:01:41 +08:00
|
|
|
|
this.uiSymbolButton1.Font = new System.Drawing.Font("宋体", 12F);
|
2021-08-16 23:05:32 +08:00
|
|
|
|
this.uiSymbolButton1.Location = new System.Drawing.Point(348, 505);
|
2021-07-21 11:20:08 +08:00
|
|
|
|
this.uiSymbolButton1.MinimumSize = new System.Drawing.Size(1, 1);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.uiSymbolButton1.Name = "uiSymbolButton1";
|
|
|
|
|
this.uiSymbolButton1.Padding = new System.Windows.Forms.Padding(28, 0, 0, 0);
|
|
|
|
|
this.uiSymbolButton1.Size = new System.Drawing.Size(100, 27);
|
|
|
|
|
this.uiSymbolButton1.Symbol = 61952;
|
|
|
|
|
this.uiSymbolButton1.TabIndex = 33;
|
|
|
|
|
this.uiSymbolButton1.Text = "数据";
|
|
|
|
|
this.uiSymbolButton1.Click += new System.EventHandler(this.uiSymbolButton1_Click);
|
|
|
|
|
//
|
|
|
|
|
// uiImageButton3
|
|
|
|
|
//
|
|
|
|
|
this.uiImageButton3.Cursor = System.Windows.Forms.Cursors.Hand;
|
2023-09-19 11:01:41 +08:00
|
|
|
|
this.uiImageButton3.Font = new System.Drawing.Font("宋体", 12F);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.uiImageButton3.Image = global::Sunny.UI.Demo.Properties.Resources.ChartDarkStyle;
|
2021-08-16 23:05:32 +08:00
|
|
|
|
this.uiImageButton3.Location = new System.Drawing.Point(242, 505);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.uiImageButton3.Name = "uiImageButton3";
|
|
|
|
|
this.uiImageButton3.Size = new System.Drawing.Size(100, 27);
|
|
|
|
|
this.uiImageButton3.TabIndex = 32;
|
|
|
|
|
this.uiImageButton3.TabStop = false;
|
|
|
|
|
this.uiImageButton3.Text = " Dark";
|
|
|
|
|
this.uiImageButton3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
|
|
this.uiImageButton3.Click += new System.EventHandler(this.uiImageButton3_Click);
|
|
|
|
|
//
|
|
|
|
|
// uiImageButton2
|
|
|
|
|
//
|
|
|
|
|
this.uiImageButton2.Cursor = System.Windows.Forms.Cursors.Hand;
|
2023-09-19 11:01:41 +08:00
|
|
|
|
this.uiImageButton2.Font = new System.Drawing.Font("宋体", 12F);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.uiImageButton2.Image = global::Sunny.UI.Demo.Properties.Resources.ChartPlainStyle;
|
2021-08-16 23:05:32 +08:00
|
|
|
|
this.uiImageButton2.Location = new System.Drawing.Point(136, 505);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.uiImageButton2.Name = "uiImageButton2";
|
|
|
|
|
this.uiImageButton2.Size = new System.Drawing.Size(100, 27);
|
|
|
|
|
this.uiImageButton2.TabIndex = 31;
|
|
|
|
|
this.uiImageButton2.TabStop = false;
|
|
|
|
|
this.uiImageButton2.Text = " Plain";
|
|
|
|
|
this.uiImageButton2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
|
|
this.uiImageButton2.Click += new System.EventHandler(this.uiImageButton2_Click);
|
|
|
|
|
//
|
|
|
|
|
// uiImageButton1
|
|
|
|
|
//
|
|
|
|
|
this.uiImageButton1.Cursor = System.Windows.Forms.Cursors.Hand;
|
2023-09-19 11:01:41 +08:00
|
|
|
|
this.uiImageButton1.Font = new System.Drawing.Font("宋体", 12F);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.uiImageButton1.Image = global::Sunny.UI.Demo.Properties.Resources.ChartDefaultStyle;
|
2021-08-16 23:05:32 +08:00
|
|
|
|
this.uiImageButton1.Location = new System.Drawing.Point(30, 505);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.uiImageButton1.Name = "uiImageButton1";
|
|
|
|
|
this.uiImageButton1.Size = new System.Drawing.Size(100, 27);
|
|
|
|
|
this.uiImageButton1.TabIndex = 30;
|
|
|
|
|
this.uiImageButton1.TabStop = false;
|
|
|
|
|
this.uiImageButton1.Text = " Default";
|
|
|
|
|
this.uiImageButton1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
|
|
this.uiImageButton1.Click += new System.EventHandler(this.uiImageButton1_Click);
|
|
|
|
|
//
|
2021-07-21 11:20:08 +08:00
|
|
|
|
// uiSymbolButton2
|
|
|
|
|
//
|
|
|
|
|
this.uiSymbolButton2.Cursor = System.Windows.Forms.Cursors.Hand;
|
|
|
|
|
this.uiSymbolButton2.Enabled = false;
|
2023-09-19 11:01:41 +08:00
|
|
|
|
this.uiSymbolButton2.Font = new System.Drawing.Font("宋体", 12F);
|
2021-08-16 23:05:32 +08:00
|
|
|
|
this.uiSymbolButton2.Location = new System.Drawing.Point(454, 505);
|
2021-07-21 11:20:08 +08:00
|
|
|
|
this.uiSymbolButton2.MinimumSize = new System.Drawing.Size(1, 1);
|
|
|
|
|
this.uiSymbolButton2.Name = "uiSymbolButton2";
|
|
|
|
|
this.uiSymbolButton2.Padding = new System.Windows.Forms.Padding(28, 0, 0, 0);
|
|
|
|
|
this.uiSymbolButton2.Size = new System.Drawing.Size(100, 27);
|
|
|
|
|
this.uiSymbolButton2.Symbol = 61473;
|
|
|
|
|
this.uiSymbolButton2.TabIndex = 36;
|
|
|
|
|
this.uiSymbolButton2.Text = "更新";
|
|
|
|
|
this.uiSymbolButton2.Click += new System.EventHandler(this.uiSymbolButton2_Click);
|
|
|
|
|
//
|
2020-06-26 15:13:36 +08:00
|
|
|
|
// FDoughnutChart
|
|
|
|
|
//
|
2021-08-16 23:05:32 +08:00
|
|
|
|
this.AllowShowTitle = true;
|
2021-03-29 21:00:32 +08:00
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.ClientSize = new System.Drawing.Size(800, 558);
|
2021-08-16 23:05:32 +08:00
|
|
|
|
this.Controls.Add(this.uiSymbolButton2);
|
|
|
|
|
this.Controls.Add(this.uiSymbolButton1);
|
|
|
|
|
this.Controls.Add(this.uiImageButton3);
|
|
|
|
|
this.Controls.Add(this.uiImageButton2);
|
|
|
|
|
this.Controls.Add(this.uiImageButton1);
|
|
|
|
|
this.Controls.Add(this.DoughnutChart);
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.Name = "FDoughnutChart";
|
2021-08-16 23:05:32 +08:00
|
|
|
|
this.Padding = new System.Windows.Forms.Padding(0, 35, 0, 0);
|
|
|
|
|
this.ShowTitle = true;
|
2020-06-26 15:13:36 +08:00
|
|
|
|
this.Symbol = 62056;
|
|
|
|
|
this.Text = "DoughnutChart";
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.uiImageButton3)).EndInit();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.uiImageButton2)).EndInit();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.uiImageButton1)).EndInit();
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private UIDoughnutChart DoughnutChart;
|
|
|
|
|
private UISymbolButton uiSymbolButton1;
|
|
|
|
|
private UIImageButton uiImageButton3;
|
|
|
|
|
private UIImageButton uiImageButton2;
|
|
|
|
|
private UIImageButton uiImageButton1;
|
2021-07-21 11:20:08 +08:00
|
|
|
|
private UISymbolButton uiSymbolButton2;
|
2020-06-26 15:13:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|