コード例 #1
0
ファイル: MKSLlocal.cs プロジェクト: DenisDanilov/MKS
 private void GuiOff()
 {
     if (_logisticsMasterView == null)
     {
         _logisticsMasterView = new MKSLogisticsMasterView(this);
     }
     _logisticsMasterView.SetVisible(false);
 }
コード例 #2
0
ファイル: MKSLlocal.cs プロジェクト: somnambulistic/MKS
 private void ToggleGui()
 {
     if (_logisticsMasterView == null)
     {
         _logisticsMasterView = new MKSLogisticsMasterView(this);
     }
     _logisticsMasterView.ToggleVisible();
 }