Interaction logic for CodeGenerationControl.xaml
Inheritance: System.Windows.Controls.UserControl
コード例 #1
0
ファイル: MainPlugin.cs プロジェクト: vchelaru/FlatRedBall
 private void ShowUi()
 {
     if (control == null)
     {
         control = new CodeGenerationControl();
         base.AddToTab(PluginManager.BottomTab, control, "Code Generation");
     }
     else
     {
         base.AddTab();
     }
 }
コード例 #2
0
 private void ShowUi()
 {
     if (control == null)
     {
         control = new CodeGenerationControl();
         base.AddToTab(PluginManager.BottomTab, control, "Code Generation");
     }
     else
     {
         base.AddTab();
     }
 }