namespace XrmTools { partial class MainWindow { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow)); this.label1 = new System.Windows.Forms.Label(); this.txtLogicalName = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.txtGuid = new System.Windows.Forms.TextBox(); this.btnSearch = new System.Windows.Forms.Button(); this.statusStrip = new System.Windows.Forms.StatusStrip(); this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar(); this.backgroundWorker = new System.ComponentModel.BackgroundWorker(); this.grdReferences = new System.Windows.Forms.DataGridView(); this.btnBrowse = new System.Windows.Forms.Button(); this.btnDelete = new System.Windows.Forms.Button(); this.btnBrowseEntity = new System.Windows.Forms.Button(); this.statusStrip.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdReferences)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(13, 13); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(95, 13); this.label1.TabIndex = 0; this.label1.Text = "Entity logical name"; // // txtLogicalName // this.txtLogicalName.Location = new System.Drawing.Point(115, 10); this.txtLogicalName.Name = "txtLogicalName"; this.txtLogicalName.Size = new System.Drawing.Size(388, 20); this.txtLogicalName.TabIndex = 1; this.txtLogicalName.TextChanged += new System.EventHandler(this.txtLogicalName_TextChanged); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(16, 50); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(29, 13); this.label2.TabIndex = 2; this.label2.Text = "Guid"; // // txtGuid // this.txtGuid.Location = new System.Drawing.Point(115, 47); this.txtGuid.Name = "txtGuid"; this.txtGuid.Size = new System.Drawing.Size(388, 20); this.txtGuid.TabIndex = 3; // // btnSearch // this.btnSearch.Location = new System.Drawing.Point(12, 80); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(75, 23); this.btnSearch.TabIndex = 5; this.btnSearch.Text = "Search"; this.btnSearch.UseVisualStyleBackColor = true; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // statusStrip // this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripProgressBar}); this.statusStrip.Location = new System.Drawing.Point(0, 433); this.statusStrip.Name = "statusStrip"; this.statusStrip.Size = new System.Drawing.Size(546, 22); this.statusStrip.TabIndex = 6; this.statusStrip.Text = "statusStrip1"; // // toolStripProgressBar // this.toolStripProgressBar.Name = "toolStripProgressBar"; this.toolStripProgressBar.Size = new System.Drawing.Size(100, 16); this.toolStripProgressBar.Visible = false; // // backgroundWorker // this.backgroundWorker.WorkerReportsProgress = true; // // grdReferences // this.grdReferences.AllowUserToAddRows = false; this.grdReferences.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.grdReferences.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.grdReferences.Location = new System.Drawing.Point(12, 109); this.grdReferences.Name = "grdReferences"; this.grdReferences.ReadOnly = true; this.grdReferences.Size = new System.Drawing.Size(522, 311); this.grdReferences.TabIndex = 7; this.grdReferences.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.grdReferences_UserDeletingRow); // // btnBrowse // this.btnBrowse.Location = new System.Drawing.Point(509, 8); this.btnBrowse.Name = "btnBrowse"; this.btnBrowse.Size = new System.Drawing.Size(25, 23); this.btnBrowse.TabIndex = 8; this.btnBrowse.Text = "..."; this.btnBrowse.UseVisualStyleBackColor = true; this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click); // // btnDelete // this.btnDelete.Location = new System.Drawing.Point(94, 80); this.btnDelete.Name = "btnDelete"; this.btnDelete.Size = new System.Drawing.Size(75, 23); this.btnDelete.TabIndex = 9; this.btnDelete.Text = "Delete"; this.btnDelete.UseVisualStyleBackColor = true; this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); // // btnBrowseEntity // this.btnBrowseEntity.Enabled = false; this.btnBrowseEntity.Location = new System.Drawing.Point(509, 45); this.btnBrowseEntity.Name = "btnBrowseEntity"; this.btnBrowseEntity.Size = new System.Drawing.Size(25, 23); this.btnBrowseEntity.TabIndex = 10; this.btnBrowseEntity.Text = "..."; this.btnBrowseEntity.UseVisualStyleBackColor = true; this.btnBrowseEntity.Click += new System.EventHandler(this.btnBrowseEntity_Click); // // MainWindow // this.AcceptButton = this.btnSearch; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(546, 455); this.Controls.Add(this.btnBrowseEntity); this.Controls.Add(this.btnDelete); this.Controls.Add(this.btnBrowse); this.Controls.Add(this.grdReferences); this.Controls.Add(this.statusStrip); this.Controls.Add(this.btnSearch); this.Controls.Add(this.txtGuid); this.Controls.Add(this.label2); this.Controls.Add(this.txtLogicalName); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "MainWindow"; this.Text = "XrmTools"; this.statusStrip.ResumeLayout(false); this.statusStrip.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdReferences)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txtLogicalName; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox txtGuid; private System.Windows.Forms.Button btnSearch; private System.Windows.Forms.StatusStrip statusStrip; private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar; private System.ComponentModel.BackgroundWorker backgroundWorker; private System.Windows.Forms.DataGridView grdReferences; private System.Windows.Forms.Button btnBrowse; private System.Windows.Forms.Button btnDelete; private System.Windows.Forms.Button btnBrowseEntity; } }