155 lines
6.5 KiB
C#
155 lines
6.5 KiB
C#
namespace SpineViewer.Dialogs
|
|
{
|
|
partial class ExportDialog
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExportDialog));
|
|
panel1 = new Panel();
|
|
tableLayoutPanel1 = new TableLayoutPanel();
|
|
propertyGrid_ExportArgs = new PropertyGrid();
|
|
tableLayoutPanel2 = new TableLayoutPanel();
|
|
button_Ok = new Button();
|
|
button_Cancel = new Button();
|
|
panel1.SuspendLayout();
|
|
tableLayoutPanel1.SuspendLayout();
|
|
tableLayoutPanel2.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.Controls.Add(tableLayoutPanel1);
|
|
panel1.Dock = DockStyle.Fill;
|
|
panel1.Location = new Point(0, 0);
|
|
panel1.Name = "panel1";
|
|
panel1.Padding = new Padding(50, 15, 50, 10);
|
|
panel1.Size = new Size(793, 754);
|
|
panel1.TabIndex = 2;
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
tableLayoutPanel1.AutoSize = true;
|
|
tableLayoutPanel1.ColumnCount = 1;
|
|
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanel1.Controls.Add(propertyGrid_ExportArgs, 0, 0);
|
|
tableLayoutPanel1.Controls.Add(tableLayoutPanel2, 0, 1);
|
|
tableLayoutPanel1.Dock = DockStyle.Fill;
|
|
tableLayoutPanel1.Location = new Point(50, 15);
|
|
tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
tableLayoutPanel1.RowCount = 2;
|
|
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
|
|
tableLayoutPanel1.RowStyles.Add(new RowStyle());
|
|
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 20F));
|
|
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 20F));
|
|
tableLayoutPanel1.Size = new Size(693, 729);
|
|
tableLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// propertyGrid_ExportArgs
|
|
//
|
|
propertyGrid_ExportArgs.Dock = DockStyle.Fill;
|
|
propertyGrid_ExportArgs.Location = new Point(3, 3);
|
|
propertyGrid_ExportArgs.Name = "propertyGrid_ExportArgs";
|
|
propertyGrid_ExportArgs.PropertySort = PropertySort.Categorized;
|
|
propertyGrid_ExportArgs.Size = new Size(687, 650);
|
|
propertyGrid_ExportArgs.TabIndex = 1;
|
|
propertyGrid_ExportArgs.ToolbarVisible = false;
|
|
//
|
|
// tableLayoutPanel2
|
|
//
|
|
tableLayoutPanel2.AutoSize = true;
|
|
tableLayoutPanel2.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
tableLayoutPanel2.ColumnCount = 2;
|
|
tableLayoutPanel2.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
|
|
tableLayoutPanel2.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
|
|
tableLayoutPanel2.Controls.Add(button_Ok, 0, 0);
|
|
tableLayoutPanel2.Controls.Add(button_Cancel, 1, 0);
|
|
tableLayoutPanel2.Dock = DockStyle.Bottom;
|
|
tableLayoutPanel2.Location = new Point(3, 686);
|
|
tableLayoutPanel2.Margin = new Padding(3, 30, 3, 3);
|
|
tableLayoutPanel2.Name = "tableLayoutPanel2";
|
|
tableLayoutPanel2.RowCount = 1;
|
|
tableLayoutPanel2.RowStyles.Add(new RowStyle());
|
|
tableLayoutPanel2.Size = new Size(687, 40);
|
|
tableLayoutPanel2.TabIndex = 10;
|
|
//
|
|
// button_Ok
|
|
//
|
|
button_Ok.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
button_Ok.Location = new Point(201, 3);
|
|
button_Ok.Margin = new Padding(3, 3, 30, 3);
|
|
button_Ok.Name = "button_Ok";
|
|
button_Ok.Size = new Size(112, 34);
|
|
button_Ok.TabIndex = 7;
|
|
button_Ok.Text = "确认";
|
|
button_Ok.UseVisualStyleBackColor = true;
|
|
button_Ok.Click += button_Ok_Click;
|
|
//
|
|
// button_Cancel
|
|
//
|
|
button_Cancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|
button_Cancel.Location = new Point(373, 3);
|
|
button_Cancel.Margin = new Padding(30, 3, 3, 3);
|
|
button_Cancel.Name = "button_Cancel";
|
|
button_Cancel.Size = new Size(112, 34);
|
|
button_Cancel.TabIndex = 8;
|
|
button_Cancel.Text = "取消";
|
|
button_Cancel.UseVisualStyleBackColor = true;
|
|
button_Cancel.Click += button_Cancel_Click;
|
|
//
|
|
// ExportDialog
|
|
//
|
|
AcceptButton = button_Ok;
|
|
AutoScaleDimensions = new SizeF(11F, 24F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
CancelButton = button_Cancel;
|
|
ClientSize = new Size(793, 754);
|
|
Controls.Add(panel1);
|
|
Icon = (Icon)resources.GetObject("$this.Icon");
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "ExportDialog";
|
|
ShowInTaskbar = false;
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "导出参数";
|
|
panel1.ResumeLayout(false);
|
|
panel1.PerformLayout();
|
|
tableLayoutPanel1.ResumeLayout(false);
|
|
tableLayoutPanel1.PerformLayout();
|
|
tableLayoutPanel2.ResumeLayout(false);
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel1;
|
|
private TableLayoutPanel tableLayoutPanel1;
|
|
private TableLayoutPanel tableLayoutPanel2;
|
|
private Button button_Ok;
|
|
private Button button_Cancel;
|
|
private PropertyGrid propertyGrid_ExportArgs;
|
|
}
|
|
} |