XsltViewer.Designer.cs
上传用户:hbhltzc
上传日期:2022-06-04
资源大小:1925k
文件大小:6k
源码类别:
xml/soap/webservice
开发平台:
Visual C++
- namespace XmlNotepad {
- partial class XsltViewer {
- /// <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 Component 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.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(XsltViewer));
- this.panel1 = new System.Windows.Forms.Panel();
- this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
- this.label1 = new System.Windows.Forms.Label();
- this.SourceFileName = new System.Windows.Forms.TextBox();
- this.TransformButton = new System.Windows.Forms.Button();
- this.BrowseButton = new System.Windows.Forms.Button();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.WebBrowser1 = new System.Windows.Forms.WebBrowser();
- this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
- this.panel1.SuspendLayout();
- this.tableLayoutPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.SuspendLayout();
- //
- // panel1
- //
- this.panel1.BackColor = System.Drawing.Color.Transparent;
- this.panel1.Controls.Add(this.tableLayoutPanel1);
- this.panel1.Controls.Add(this.WebBrowser1);
- resources.ApplyResources(this.panel1, "panel1");
- this.panel1.Name = "panel1";
- //
- // tableLayoutPanel1
- //
- resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
- this.tableLayoutPanel1.BackColor = System.Drawing.Color.Transparent;
- this.tableLayoutPanel1.Controls.Add(this.label1, 1, 0);
- this.tableLayoutPanel1.Controls.Add(this.SourceFileName, 2, 0);
- this.tableLayoutPanel1.Controls.Add(this.TransformButton, 4, 0);
- this.tableLayoutPanel1.Controls.Add(this.BrowseButton, 3, 0);
- this.tableLayoutPanel1.Controls.Add(this.pictureBox1, 0, 0);
- this.tableLayoutPanel1.Name = "tableLayoutPanel1";
- //
- // label1
- //
- resources.ApplyResources(this.label1, "label1");
- this.label1.Name = "label1";
- //
- // SourceFileName
- //
- resources.ApplyResources(this.SourceFileName, "SourceFileName");
- this.SourceFileName.AccessibleName = "SourceFileName";
- this.SourceFileName.Name = "SourceFileName";
- //
- // TransformButton
- //
- resources.ApplyResources(this.TransformButton, "TransformButton");
- this.TransformButton.Name = "TransformButton";
- this.TransformButton.AccessibleName = "TransformButton";
- this.TransformButton.UseVisualStyleBackColor = true;
- this.TransformButton.Click += new System.EventHandler(this.TransformButton_Click);
- //
- // BrowseButton
- //
- resources.ApplyResources(this.BrowseButton, "BrowseButton");
- this.BrowseButton.Name = "BrowseButton";
- this.BrowseButton.AccessibleName = "BrowseButton";
- this.BrowseButton.UseVisualStyleBackColor = true;
- //
- // pictureBox1
- //
- resources.ApplyResources(this.pictureBox1, "pictureBox1");
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.TabStop = false;
- //
- // WebBrowser1
- //
- resources.ApplyResources(this.WebBrowser1, "WebBrowser1");
- this.WebBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
- this.WebBrowser1.Name = "WebBrowser1";
- //
- // XsltViewer
- //
- resources.ApplyResources(this, "$this");
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.Controls.Add(this.panel1);
- this.Name = "XsltViewer";
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.tableLayoutPanel1.ResumeLayout(false);
- this.tableLayoutPanel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.ResumeLayout(false);
- }
- void DefaultButton_Click(object sender, System.EventArgs e) {
- this.SourceFileName.Text=this.model.XsltFileName;
- }
- #endregion
- private System.Windows.Forms.Panel panel1;
- public System.Windows.Forms.WebBrowser WebBrowser1;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox SourceFileName;
- private System.Windows.Forms.Button TransformButton;
- private System.Windows.Forms.Button BrowseButton;
- private System.Windows.Forms.ToolTip toolTip1;
- private System.Windows.Forms.PictureBox pictureBox1;
- }
- }