Exemplo n.º 1
0
 public PictureColorSetting(DelegateShowLog LogPrinter)
 {
     InitializeComponent();
     this.ShowLog = LogPrinter;
     for (int i = 1; i <= 32; i++)
     {
         this.PatternNumComb.Items.Add(i);
     }
     this.LoadPicInfo(6);
 }
Exemplo n.º 2
0
 public AxisCardSetting(DelegateShowLog LogPrinter)
 {
     InitializeComponent();
     this.ShowLog = LogPrinter;
     AxisXmlPath  = Path.GetFullPath("./Configurations/" + Context.GetInstance().GeneralInformation.ControlCardFileName);
     GetXmlInformation(AxisXmlPath, "ControlCards", "AxisCard");
     foreach (var axisinfoNode in AxisNodeLs)
     {
         this.AxisComBox.Items.Add(axisinfoNode.Attributes["Name"].Value);
     }
 }
Exemplo n.º 3
0
        public ChildPanel(int Num)
        {
            InitializeComponent();

            panelindex = Num;
            showlog    = new ShowLog(this.LogrichTextBox);
            OutPutLog  = showlog.OutputLog;
            string         StartModel = Context.GetInstance().GeneralInformation.TestStartModel;
            StartModelType modeltype  = (StartModelType)(Enum.Parse(typeof(StartModelType), StartModel));

            UpdataPanelInfo(modeltype);
        }
Exemplo n.º 4
0
 public AnalysisPicture(DelegateShowLog printerLog)
 {
     InitializeComponent();
     this.ShowLog = printerLog;
 }
Exemplo n.º 5
0
 public CustomMainPanel(DelegateShowLog printlog)
 {
     InitializeComponent();
     this.ShowLog = printlog;
     context      = Context.GetInstance();
 }
Exemplo n.º 6
0
 public ModelRecipeSetting(DelegateShowLog LogPrinter)
 {
     InitializeComponent();
     this.ShowLog = LogPrinter;
     context      = Context.GetInstance();
 }