コード例 #1
0
 public UserControl1(ObservableCollection <Item> items, CustomCommandExecutor e)
 {
     InitializeComponent();
     this.Loaded += UserControl1_Loaded;
     this.items   = items;
     E            = e;
 }
コード例 #2
0
 public UserControl1(ObservableCollection<Item> items,CustomCommandExecutor e)
 {
     InitializeComponent();
     this.Loaded += UserControl1_Loaded;
     this.items = items;
     E = e;
 }
コード例 #3
0
 public CustomCommandPlugin()
 {
     Name = "自定义命令插件";
     load();
     Executor = new CustomCommandExecutor(items);
 }
コード例 #4
0
 public CustomCommandPlugin()
 {
     Name = "自定义命令插件";
     load();
     Executor = new CustomCommandExecutor(items);
 }