コード例 #1
0
 public TelaConfiguracao(TelaPrincipal tp, TelaBandeja tb, DataSet ds)
 {
     InitializeComponent();
     this.Size     = new Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
     telaBandeja   = tb;
     telaPrincipal = tp;
     dataSet       = ds;
     contadorLivre = new int[8] {
         0, 0, 0, 0, 0, 0, 0, 0
     };
 }
コード例 #2
0
ファイル: TelaPrincipal.cs プロジェクト: Cizos/IFBA-MAC
 public TelaPrincipal(TelaBandeja tb)
 {
     InitializeComponent();
     this.Size   = new Size(Screen.PrimaryScreen.Bounds.Width, (Screen.PrimaryScreen.Bounds.Height * _tamanho) / 100);
     telaBandeja = tb;
 }