2020-05-02 16:17:10 +00:00
|
|
|
|
using AppLauncher.Models;
|
|
|
|
|
using RyzStudio.Windows.ThemedForms;
|
|
|
|
|
using System;
|
2020-05-17 01:17:30 +00:00
|
|
|
|
using System.Drawing;
|
2020-05-02 16:17:10 +00:00
|
|
|
|
|
|
|
|
|
namespace AppLauncher.Windows.Forms
|
|
|
|
|
{
|
2020-05-10 10:45:54 +00:00
|
|
|
|
public class AddTileForm : TDialogForm
|
2020-05-02 16:17:10 +00:00
|
|
|
|
{
|
2020-05-17 01:17:30 +00:00
|
|
|
|
public static void ShowDialog(TTilePanelLayout control, Point coord)
|
2020-05-10 10:03:55 +00:00
|
|
|
|
{
|
2020-05-17 01:17:30 +00:00
|
|
|
|
AddTileForm form = new AddTileForm();
|
|
|
|
|
form.TilePanelLayout = control;
|
|
|
|
|
form.AimCoord = coord;
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void ShowDialog(TListBox control)
|
|
|
|
|
{
|
|
|
|
|
AddTileForm form = new AddTileForm();
|
|
|
|
|
form.ListBox = control;
|
2020-05-10 10:03:55 +00:00
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-02 16:17:10 +00:00
|
|
|
|
private System.Windows.Forms.Label label6;
|
|
|
|
|
private System.Windows.Forms.Label label7;
|
|
|
|
|
private System.Windows.Forms.Label label4;
|
|
|
|
|
private System.Windows.Forms.Label label3;
|
|
|
|
|
private System.Windows.Forms.Label label2;
|
|
|
|
|
private System.Windows.Forms.Label label1;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
private TOpenFileTextBox textBox2;
|
2020-05-10 10:45:54 +00:00
|
|
|
|
private TTextBox textBox3;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
private TFolderTextBox textBox4;
|
2020-05-10 10:45:54 +00:00
|
|
|
|
private TButton button1;
|
|
|
|
|
private TPickerBox pickerBox1;
|
|
|
|
|
private TPickerBox pickerBox2;
|
2020-05-15 00:19:09 +00:00
|
|
|
|
private RyzStudio.Windows.Forms.THorizontalSeparator horizontalSeparator1;
|
|
|
|
|
private RyzStudio.Windows.Forms.THorizontalSeparator horizontalSeparator2;
|
2020-05-10 10:45:54 +00:00
|
|
|
|
private TTextBox textBox1;
|
2020-05-17 01:17:30 +00:00
|
|
|
|
|
|
|
|
|
public TTilePanelLayout TilePanelLayout { get; set; } = null;
|
|
|
|
|
public Point AimCoord { get; set; } = new Point(-1, -1);
|
|
|
|
|
public TListBox ListBox { get; set; } = null;
|
2020-05-02 16:17:10 +00:00
|
|
|
|
|
|
|
|
|
public AddTileForm() : base()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
pickerBox1.ComboBox.Items.Clear();
|
|
|
|
|
pickerBox1.ComboBox.Items.AddRange(new string[] { "Normal", "Hidden", "Minimized", "Maximized" });
|
|
|
|
|
if (pickerBox1.ComboBox.Items.Count > 0) pickerBox1.ComboBox.SelectedIndex = 0;
|
2020-05-02 16:17:10 +00:00
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
pickerBox2.ComboBox.Items.Clear();
|
|
|
|
|
pickerBox2.ComboBox.Items.AddRange(new string[] { "No", "Yes" });
|
|
|
|
|
if (pickerBox2.ComboBox.Items.Count > 0) pickerBox2.ComboBox.SelectedIndex = 0;
|
2020-05-02 16:17:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
2020-05-03 14:53:15 +00:00
|
|
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddTileForm));
|
2020-05-12 23:37:01 +00:00
|
|
|
|
RyzStudio.Windows.ThemedForms.TButton.ButtonStyle buttonStyle1 = new RyzStudio.Windows.ThemedForms.TButton.ButtonStyle();
|
|
|
|
|
RyzStudio.Windows.ThemedForms.TButton.ButtonStyle buttonStyle2 = new RyzStudio.Windows.ThemedForms.TButton.ButtonStyle();
|
|
|
|
|
RyzStudio.Windows.ThemedForms.TButton.ButtonStyle buttonStyle3 = new RyzStudio.Windows.ThemedForms.TButton.ButtonStyle();
|
2020-05-10 10:45:54 +00:00
|
|
|
|
this.textBox1 = new RyzStudio.Windows.ThemedForms.TTextBox();
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.label6 = new System.Windows.Forms.Label();
|
|
|
|
|
this.label7 = new System.Windows.Forms.Label();
|
|
|
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
|
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
|
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
|
|
|
this.label1 = new System.Windows.Forms.Label();
|
2020-05-12 23:37:01 +00:00
|
|
|
|
this.textBox2 = new RyzStudio.Windows.ThemedForms.TOpenFileTextBox();
|
2020-05-10 10:45:54 +00:00
|
|
|
|
this.textBox3 = new RyzStudio.Windows.ThemedForms.TTextBox();
|
2020-05-12 23:37:01 +00:00
|
|
|
|
this.textBox4 = new RyzStudio.Windows.ThemedForms.TFolderTextBox();
|
2020-05-10 10:45:54 +00:00
|
|
|
|
this.button1 = new RyzStudio.Windows.ThemedForms.TButton();
|
|
|
|
|
this.pickerBox1 = new RyzStudio.Windows.ThemedForms.TPickerBox();
|
|
|
|
|
this.pickerBox2 = new RyzStudio.Windows.ThemedForms.TPickerBox();
|
2020-05-15 00:19:09 +00:00
|
|
|
|
this.horizontalSeparator1 = new RyzStudio.Windows.Forms.THorizontalSeparator();
|
|
|
|
|
this.horizontalSeparator2 = new RyzStudio.Windows.Forms.THorizontalSeparator();
|
2020-05-02 16:17:10 +00:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.imgbxClose)).BeginInit();
|
|
|
|
|
this.SuspendLayout();
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// imgbxClose
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.imgbxClose.Image = ((System.Drawing.Image)(resources.GetObject("imgbxClose.Image")));
|
|
|
|
|
this.imgbxClose.Location = new System.Drawing.Point(367, 5);
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-17 02:24:46 +00:00
|
|
|
|
this.Text = "Add Tile";
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// panel1
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.panel1.Location = new System.Drawing.Point(394, 474);
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// area1
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.area1.Location = new System.Drawing.Point(1, 474);
|
|
|
|
|
this.area1.Size = new System.Drawing.Size(392, 5);
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// textBox1
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
|
|
|
|
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
2020-05-02 16:17:10 +00:00
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.textBox1.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
|
|
|
|
|
this.textBox1.Location = new System.Drawing.Point(159, 50);
|
|
|
|
|
this.textBox1.Margin = new System.Windows.Forms.Padding(10, 6, 10, 6);
|
|
|
|
|
this.textBox1.Name = "textBox1";
|
|
|
|
|
this.textBox1.Padding = new System.Windows.Forms.Padding(10, 10, 9, 9);
|
|
|
|
|
this.textBox1.Size = new System.Drawing.Size(220, 32);
|
|
|
|
|
this.textBox1.SubmitButton = null;
|
|
|
|
|
this.textBox1.TabIndex = 152;
|
|
|
|
|
this.textBox1.UseSystemPasswordChar = false;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// label6
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.label6.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(95)))), ((int)(((byte)(99)))), ((int)(((byte)(104)))));
|
|
|
|
|
this.label6.Location = new System.Drawing.Point(18, 268);
|
|
|
|
|
this.label6.Name = "label6";
|
|
|
|
|
this.label6.Size = new System.Drawing.Size(208, 32);
|
|
|
|
|
this.label6.TabIndex = 163;
|
|
|
|
|
this.label6.Text = "Run As Admin";
|
|
|
|
|
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// label7
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.label7.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(95)))), ((int)(((byte)(99)))), ((int)(((byte)(104)))));
|
|
|
|
|
this.label7.Location = new System.Drawing.Point(18, 227);
|
|
|
|
|
this.label7.Name = "label7";
|
|
|
|
|
this.label7.Size = new System.Drawing.Size(208, 32);
|
|
|
|
|
this.label7.TabIndex = 161;
|
|
|
|
|
this.label7.Text = "Window Style";
|
|
|
|
|
this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// label4
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.label4.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(95)))), ((int)(((byte)(99)))), ((int)(((byte)(104)))));
|
|
|
|
|
this.label4.Location = new System.Drawing.Point(18, 173);
|
|
|
|
|
this.label4.Name = "label4";
|
|
|
|
|
this.label4.Size = new System.Drawing.Size(131, 32);
|
|
|
|
|
this.label4.TabIndex = 159;
|
|
|
|
|
this.label4.Text = "Working Directory";
|
|
|
|
|
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// label3
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.label3.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(95)))), ((int)(((byte)(99)))), ((int)(((byte)(104)))));
|
|
|
|
|
this.label3.Location = new System.Drawing.Point(18, 132);
|
|
|
|
|
this.label3.Name = "label3";
|
|
|
|
|
this.label3.Size = new System.Drawing.Size(131, 32);
|
|
|
|
|
this.label3.TabIndex = 157;
|
|
|
|
|
this.label3.Text = "Argument";
|
|
|
|
|
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// label2
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.label2.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(95)))), ((int)(((byte)(99)))), ((int)(((byte)(104)))));
|
|
|
|
|
this.label2.Location = new System.Drawing.Point(18, 91);
|
|
|
|
|
this.label2.Name = "label2";
|
|
|
|
|
this.label2.Size = new System.Drawing.Size(131, 32);
|
|
|
|
|
this.label2.TabIndex = 155;
|
|
|
|
|
this.label2.Text = "Filename";
|
|
|
|
|
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// label1
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.label1.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(95)))), ((int)(((byte)(99)))), ((int)(((byte)(104)))));
|
|
|
|
|
this.label1.Location = new System.Drawing.Point(18, 50);
|
|
|
|
|
this.label1.Margin = new System.Windows.Forms.Padding(0);
|
|
|
|
|
this.label1.Name = "label1";
|
|
|
|
|
this.label1.Size = new System.Drawing.Size(131, 32);
|
|
|
|
|
this.label1.TabIndex = 153;
|
|
|
|
|
this.label1.Text = "Title";
|
|
|
|
|
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// textBox2
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
|
|
|
|
this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
2020-05-02 16:17:10 +00:00
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.textBox2.BackColor = System.Drawing.Color.Transparent;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
this.textBox2.FileDialog = null;
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.textBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
|
2020-05-12 23:37:01 +00:00
|
|
|
|
this.textBox2.HighlightImage = ((System.Drawing.Image)(resources.GetObject("textBox2.HighlightImage")));
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.textBox2.Location = new System.Drawing.Point(159, 91);
|
|
|
|
|
this.textBox2.Margin = new System.Windows.Forms.Padding(10, 3, 3, 3);
|
|
|
|
|
this.textBox2.Name = "textBox2";
|
2020-05-12 23:37:01 +00:00
|
|
|
|
this.textBox2.NormalImage = ((System.Drawing.Image)(resources.GetObject("textBox2.NormalImage")));
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.textBox2.Padding = new System.Windows.Forms.Padding(10, 10, 9, 9);
|
|
|
|
|
this.textBox2.Size = new System.Drawing.Size(220, 32);
|
|
|
|
|
this.textBox2.SubmitButton = null;
|
|
|
|
|
this.textBox2.TabIndex = 170;
|
|
|
|
|
this.textBox2.UseSystemPasswordChar = false;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// textBox3
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
|
|
|
|
this.textBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
2020-05-02 16:17:10 +00:00
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.textBox3.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
|
|
|
|
|
this.textBox3.Location = new System.Drawing.Point(159, 132);
|
|
|
|
|
this.textBox3.Margin = new System.Windows.Forms.Padding(10, 6, 10, 6);
|
|
|
|
|
this.textBox3.Name = "textBox3";
|
|
|
|
|
this.textBox3.Padding = new System.Windows.Forms.Padding(10, 10, 9, 9);
|
|
|
|
|
this.textBox3.Size = new System.Drawing.Size(220, 32);
|
|
|
|
|
this.textBox3.SubmitButton = null;
|
|
|
|
|
this.textBox3.TabIndex = 171;
|
|
|
|
|
this.textBox3.UseSystemPasswordChar = false;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// textBox4
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
|
|
|
|
this.textBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
2020-05-02 16:17:10 +00:00
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.textBox4.BackColor = System.Drawing.Color.Transparent;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
this.textBox4.FolderDialog = null;
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.textBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
|
2020-05-12 23:37:01 +00:00
|
|
|
|
this.textBox4.HighlightImage = ((System.Drawing.Image)(resources.GetObject("textBox4.HighlightImage")));
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.textBox4.Location = new System.Drawing.Point(159, 173);
|
|
|
|
|
this.textBox4.Margin = new System.Windows.Forms.Padding(10, 3, 3, 3);
|
|
|
|
|
this.textBox4.Name = "textBox4";
|
2020-05-12 23:37:01 +00:00
|
|
|
|
this.textBox4.NormalImage = ((System.Drawing.Image)(resources.GetObject("textBox4.NormalImage")));
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.textBox4.Padding = new System.Windows.Forms.Padding(10, 10, 9, 9);
|
|
|
|
|
this.textBox4.Size = new System.Drawing.Size(220, 32);
|
|
|
|
|
this.textBox4.SubmitButton = null;
|
|
|
|
|
this.textBox4.TabIndex = 172;
|
|
|
|
|
this.textBox4.UseSystemPasswordChar = false;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// button1
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.button1.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.button1.DefaultImage = null;
|
|
|
|
|
this.button1.DownImage = null;
|
|
|
|
|
this.button1.LabelText = "&Save";
|
|
|
|
|
this.button1.Location = new System.Drawing.Point(251, 427);
|
|
|
|
|
this.button1.Name = "button1";
|
|
|
|
|
this.button1.OverImage = null;
|
|
|
|
|
this.button1.Padding = new System.Windows.Forms.Padding(4, 4, 3, 3);
|
|
|
|
|
this.button1.Size = new System.Drawing.Size(128, 32);
|
|
|
|
|
this.button1.TabIndex = 173;
|
|
|
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// pickerBox1
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
|
|
|
|
this.pickerBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
2020-05-02 16:17:10 +00:00
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.pickerBox1.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.pickerBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
|
|
|
|
|
this.pickerBox1.Location = new System.Drawing.Point(239, 227);
|
|
|
|
|
this.pickerBox1.Margin = new System.Windows.Forms.Padding(10, 6, 10, 6);
|
|
|
|
|
this.pickerBox1.Name = "pickerBox1";
|
|
|
|
|
this.pickerBox1.Padding = new System.Windows.Forms.Padding(10, 6, 7, 5);
|
|
|
|
|
this.pickerBox1.Size = new System.Drawing.Size(140, 32);
|
|
|
|
|
this.pickerBox1.SubmitButton = null;
|
|
|
|
|
this.pickerBox1.TabIndex = 174;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// pickerBox2
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
|
|
|
|
this.pickerBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
2020-05-02 16:17:10 +00:00
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.pickerBox2.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
|
this.pickerBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
|
|
|
|
|
this.pickerBox2.Location = new System.Drawing.Point(239, 268);
|
|
|
|
|
this.pickerBox2.Margin = new System.Windows.Forms.Padding(10, 6, 10, 6);
|
|
|
|
|
this.pickerBox2.Name = "pickerBox2";
|
|
|
|
|
this.pickerBox2.Padding = new System.Windows.Forms.Padding(10, 6, 7, 5);
|
|
|
|
|
this.pickerBox2.Size = new System.Drawing.Size(140, 32);
|
|
|
|
|
this.pickerBox2.SubmitButton = null;
|
|
|
|
|
this.pickerBox2.TabIndex = 175;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// horizontalSeparator1
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
|
|
|
|
this.horizontalSeparator1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
2020-05-02 16:17:10 +00:00
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.horizontalSeparator1.Location = new System.Drawing.Point(10, 215);
|
|
|
|
|
this.horizontalSeparator1.MaximumSize = new System.Drawing.Size(4920, 2);
|
|
|
|
|
this.horizontalSeparator1.Name = "horizontalSeparator1";
|
|
|
|
|
this.horizontalSeparator1.Size = new System.Drawing.Size(380, 2);
|
|
|
|
|
this.horizontalSeparator1.TabIndex = 176;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
// horizontalSeparator2
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
|
|
|
|
this.horizontalSeparator2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
2020-05-02 16:17:10 +00:00
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.horizontalSeparator2.Location = new System.Drawing.Point(10, 310);
|
|
|
|
|
this.horizontalSeparator2.MaximumSize = new System.Drawing.Size(4920, 2);
|
|
|
|
|
this.horizontalSeparator2.Name = "horizontalSeparator2";
|
|
|
|
|
this.horizontalSeparator2.Size = new System.Drawing.Size(380, 2);
|
|
|
|
|
this.horizontalSeparator2.TabIndex = 177;
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-03 14:53:15 +00:00
|
|
|
|
// AddTileForm
|
2020-05-12 23:37:01 +00:00
|
|
|
|
//
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.ClientSize = new System.Drawing.Size(400, 480);
|
|
|
|
|
this.Controls.Add(this.horizontalSeparator2);
|
|
|
|
|
this.Controls.Add(this.horizontalSeparator1);
|
|
|
|
|
this.Controls.Add(this.pickerBox2);
|
|
|
|
|
this.Controls.Add(this.pickerBox1);
|
|
|
|
|
this.Controls.Add(this.button1);
|
|
|
|
|
this.Controls.Add(this.textBox4);
|
|
|
|
|
this.Controls.Add(this.textBox3);
|
|
|
|
|
this.Controls.Add(this.textBox2);
|
|
|
|
|
this.Controls.Add(this.label6);
|
|
|
|
|
this.Controls.Add(this.label7);
|
|
|
|
|
this.Controls.Add(this.label4);
|
|
|
|
|
this.Controls.Add(this.label3);
|
|
|
|
|
this.Controls.Add(this.label2);
|
|
|
|
|
this.Controls.Add(this.label1);
|
|
|
|
|
this.Controls.Add(this.textBox1);
|
2020-05-17 02:24:46 +00:00
|
|
|
|
this.Title = "Add Tile";
|
2020-05-03 14:53:15 +00:00
|
|
|
|
this.Name = "AddTileForm";
|
2020-05-02 16:17:10 +00:00
|
|
|
|
this.Controls.SetChildIndex(this.imgbxClose, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.panel1, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.area1, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.textBox1, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.label1, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.label2, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.label3, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.label4, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.label7, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.label6, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.textBox2, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.textBox3, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.textBox4, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.button1, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.pickerBox1, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.pickerBox2, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.horizontalSeparator1, 0);
|
|
|
|
|
this.Controls.SetChildIndex(this.horizontalSeparator2, 0);
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.imgbxClose)).EndInit();
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
2020-05-02 16:17:10 +00:00
|
|
|
|
{
|
2020-05-17 01:17:30 +00:00
|
|
|
|
TileModel model = buildModel();
|
2020-05-02 16:17:10 +00:00
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
if (this.TilePanelLayout != null)
|
|
|
|
|
{
|
|
|
|
|
this.TilePanelLayout.AddTile(model);
|
|
|
|
|
}
|
|
|
|
|
else if (this.ListBox != null)
|
|
|
|
|
{
|
|
|
|
|
int n = this.ListBox.ListBox.Items.Add(model);
|
|
|
|
|
this.ListBox.ListBox.SelectedIndex = n;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.Close();
|
2020-05-02 16:17:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
protected TileModel buildModel()
|
2020-05-02 16:17:10 +00:00
|
|
|
|
{
|
2020-05-17 01:17:30 +00:00
|
|
|
|
TileModel rs = new TileModel()
|
2020-05-02 16:17:10 +00:00
|
|
|
|
{
|
|
|
|
|
Title = textBox1.Text?.Trim(),
|
|
|
|
|
ProcessFilename = textBox2.Text?.Trim(),
|
|
|
|
|
ProcessArgument = textBox3.Text?.Trim(),
|
|
|
|
|
ProcessWorkingDirectory = textBox4.Text?.Trim(),
|
|
|
|
|
ProcessWindowStyle = (System.Diagnostics.ProcessWindowStyle)pickerBox1.ComboBox.SelectedIndex,
|
|
|
|
|
ProcessAsAdmin = (pickerBox2.ComboBox.SelectedIndex == 1)
|
|
|
|
|
};
|
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
if (!this.AimCoord.Equals(new Point(-1, -1)))
|
|
|
|
|
{
|
|
|
|
|
rs.Position = this.AimCoord;
|
|
|
|
|
}
|
2020-05-02 16:17:10 +00:00
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
return rs;
|
2020-05-02 16:17:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|