コード例 #1
0
ファイル: MainForm.cs プロジェクト: Picatout/chipcon_v2
 public MainForm()
 {
     //
     // The InitializeComponent() call is required for Windows Forms designer support.
     //
     InitializeComponent();
     //
     // TODO: Add constructor code after the InitializeComponent() call.
     //
     vm = new ChipConVM();
     vm.text = new Text(this);
     pictureBox1.Image=vm.tv.display;
     vm.tv.cls();
     conState=eCSTATE.IDLE;
     SetMenuState();
     BreaksForm = new FormBreakPoints(this);
     VRESCombo.SelectedItem=0;
     VRESCombo.Text="72";
 }
コード例 #2
0
ファイル: text.cs プロジェクト: Picatout/chipcon_v2
 internal Text(MainForm Parent)
 {
     this.vm=Parent.vm;
     font=FONT_ASCII;
     xpos=0;
     ypos=0;
 }