XsltViewer.Designer.cs
上传用户:hbhltzc
上传日期:2022-06-04
资源大小:1925k
文件大小:6k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. namespace XmlNotepad {
  2.     partial class XsltViewer {
  3.         /// <summary> 
  4.         /// Required designer variable.
  5.         /// </summary>
  6.         private System.ComponentModel.IContainer components = null;
  7.         /// <summary> 
  8.         /// Clean up any resources being used.
  9.         /// </summary>
  10.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  11.         protected override void Dispose(bool disposing) {
  12.             if (disposing && (components != null)) {
  13.                 components.Dispose();
  14.             }
  15.             base.Dispose(disposing);
  16.         }
  17.         #region Component Designer generated code
  18.         /// <summary> 
  19.         /// Required method for Designer support - do not modify 
  20.         /// the contents of this method with the code editor.
  21.         /// </summary>
  22.         private void InitializeComponent() {
  23.             this.components = new System.ComponentModel.Container();
  24.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(XsltViewer));
  25.             this.panel1 = new System.Windows.Forms.Panel();
  26.             this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  27.             this.label1 = new System.Windows.Forms.Label();
  28.             this.SourceFileName = new System.Windows.Forms.TextBox();
  29.             this.TransformButton = new System.Windows.Forms.Button();
  30.             this.BrowseButton = new System.Windows.Forms.Button();
  31.             this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32.             this.WebBrowser1 = new System.Windows.Forms.WebBrowser();
  33.             this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
  34.             this.panel1.SuspendLayout();
  35.             this.tableLayoutPanel1.SuspendLayout();
  36.             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  37.             this.SuspendLayout();
  38.             // 
  39.             // panel1
  40.             // 
  41.             this.panel1.BackColor = System.Drawing.Color.Transparent;
  42.             this.panel1.Controls.Add(this.tableLayoutPanel1);
  43.             this.panel1.Controls.Add(this.WebBrowser1);
  44.             resources.ApplyResources(this.panel1, "panel1");
  45.             this.panel1.Name = "panel1";
  46.             // 
  47.             // tableLayoutPanel1
  48.             // 
  49.             resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
  50.             this.tableLayoutPanel1.BackColor = System.Drawing.Color.Transparent;
  51.             this.tableLayoutPanel1.Controls.Add(this.label1, 1, 0);
  52.             this.tableLayoutPanel1.Controls.Add(this.SourceFileName, 2, 0);
  53.             this.tableLayoutPanel1.Controls.Add(this.TransformButton, 4, 0);
  54.             this.tableLayoutPanel1.Controls.Add(this.BrowseButton, 3, 0);
  55.             this.tableLayoutPanel1.Controls.Add(this.pictureBox1, 0, 0);
  56.             this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  57.             // 
  58.             // label1
  59.             // 
  60.             resources.ApplyResources(this.label1, "label1");
  61.             this.label1.Name = "label1";
  62.             // 
  63.             // SourceFileName
  64.             // 
  65.             resources.ApplyResources(this.SourceFileName, "SourceFileName");
  66.             this.SourceFileName.AccessibleName = "SourceFileName";
  67.             this.SourceFileName.Name = "SourceFileName";
  68.             // 
  69.             // TransformButton
  70.             // 
  71.             resources.ApplyResources(this.TransformButton, "TransformButton");
  72.             this.TransformButton.Name = "TransformButton";
  73.             this.TransformButton.AccessibleName = "TransformButton"; 
  74.             this.TransformButton.UseVisualStyleBackColor = true;
  75.             this.TransformButton.Click += new System.EventHandler(this.TransformButton_Click);
  76.             // 
  77.             // BrowseButton
  78.             // 
  79.             resources.ApplyResources(this.BrowseButton, "BrowseButton");
  80.             this.BrowseButton.Name = "BrowseButton";
  81.             this.BrowseButton.AccessibleName = "BrowseButton"; 
  82.             this.BrowseButton.UseVisualStyleBackColor = true;
  83.             // 
  84.             // pictureBox1
  85.             // 
  86.             resources.ApplyResources(this.pictureBox1, "pictureBox1");
  87.             this.pictureBox1.Name = "pictureBox1";
  88.             this.pictureBox1.TabStop = false;
  89.             // 
  90.             // WebBrowser1
  91.             // 
  92.             resources.ApplyResources(this.WebBrowser1, "WebBrowser1");
  93.             this.WebBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
  94.             this.WebBrowser1.Name = "WebBrowser1";
  95.             // 
  96.             // XsltViewer
  97.             // 
  98.             resources.ApplyResources(this, "$this");
  99.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  100.             this.Controls.Add(this.panel1);
  101.             this.Name = "XsltViewer";
  102.             this.panel1.ResumeLayout(false);
  103.             this.panel1.PerformLayout();
  104.             this.tableLayoutPanel1.ResumeLayout(false);
  105.             this.tableLayoutPanel1.PerformLayout();
  106.             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  107.             this.ResumeLayout(false);
  108.         }
  109.         void DefaultButton_Click(object sender, System.EventArgs e) {
  110.             this.SourceFileName.Text=this.model.XsltFileName;
  111.         }
  112.         #endregion
  113.         private System.Windows.Forms.Panel panel1;
  114.         public System.Windows.Forms.WebBrowser WebBrowser1;
  115.         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  116.         private System.Windows.Forms.Label label1;
  117.         private System.Windows.Forms.TextBox SourceFileName;
  118.         private System.Windows.Forms.Button TransformButton;
  119.         private System.Windows.Forms.Button BrowseButton;
  120.         private System.Windows.Forms.ToolTip toolTip1;
  121.         private System.Windows.Forms.PictureBox pictureBox1;
  122.     }
  123. }