Exemplo n.º 1
0
        public MainView(AsyncPackageBase package)
        {
            InitializeComponent();

            MainViewModel.Package = package;

            DataContext = ViewModelLocator.MainViewModel;
        }
Exemplo n.º 2
0
 public async static Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new ActivityLogCommand(package));
Exemplo n.º 3
0
 private CancelBuildCommand(AsyncPackageBase package) : base(package, PackageIds.CancelBuildCommand)
 {
 }
Exemplo n.º 4
0
 private InsertGuidCommand(AsyncPackageBase package) : base(package, PackageIds.InsertGuidCommand)
 {
 }
Exemplo n.º 5
0
 public async static Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new EditSolutionCommand(package));
Exemplo n.º 6
0
 public async static Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new KeyboardOptionsCommand(package));
Exemplo n.º 7
0
 public async static Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new ManageExtensionsCommand(package));
Exemplo n.º 8
0
 protected StartPagePlusCommand(AsyncPackageBase package, int id) : base(package, id)
 {
 }
Exemplo n.º 9
0
 private CloseSolutionCommand(AsyncPackageBase package) : base(package, PackageIds.CloseSolutionCommand)
 {
 }
Exemplo n.º 10
0
 protected BuildCommand(AsyncPackageBase package, int id) : base(package, id)
 {
 }
Exemplo n.º 11
0
 public async static Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new RestartNormalCommand(package));
Exemplo n.º 12
0
 private RestartNormalCommand(AsyncPackageBase package) : base(package, PackageIds.RestartNormalCommand)
 {
 }
 private ViewStartPagePlus(AsyncPackageBase package)
     : base(package, PackageIds.ViewStartPagePlus)
 {
 }
Exemplo n.º 14
0
 protected InsertCommand(AsyncPackageBase package, int id) : base(package, id)
 {
 }
 public StartPagePlusToolWindow(AsyncPackageBase package) : base(null)
 {
     Caption            = Vsix.Name;
     BitmapImageMoniker = KnownMonikers.Home;
     Content            = new MainView(package);
 }
Exemplo n.º 16
0
 public static async Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new StartPagePlusOptions(package));
Exemplo n.º 17
0
 protected AsyncDynamicCommand(AsyncPackageBase package, int id) : base(package, id)
 {
 }
Exemplo n.º 18
0
 private ViewDeveloperNews(AsyncPackageBase package)
     : base(package, PackageIds.ViewDeveloperNews)
 {
 }
Exemplo n.º 19
0
 private ManageExtensionsCommand(AsyncPackageBase package) : base(package, PackageIds.ManageExtensionsCommand)
 {
 }
Exemplo n.º 20
0
 public static async Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new ViewDeveloperNews(package));
Exemplo n.º 21
0
 private KeyboardOptionsCommand(AsyncPackageBase package) : base(package, PackageIds.KeyboardOptionsCommand)
 {
 }
Exemplo n.º 22
0
 private RebuildProjectCommand(AsyncPackageBase package)
     : base(package, PackageIds.RebuildProjectCommand)
 {
 }
Exemplo n.º 23
0
 protected TimeSaversCommand(AsyncPackageBase package, int id) : base(package, id)
 {
 }
Exemplo n.º 24
0
 public async static Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new RebuildProjectCommand(package));
Exemplo n.º 25
0
 private EditSolutionCommand(AsyncPackageBase package) : base(package, PackageIds.EditSolutionCommand)
 {
 }
Exemplo n.º 26
0
 private PathVariablesCommand(AsyncPackageBase package)
     : base(package, PackageIds.PathVariablesCommand)
 {
 }
Exemplo n.º 27
0
 public async static Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new InsertGuidCommand(package));
Exemplo n.º 28
0
 public async static Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new PathVariablesCommand(package));
Exemplo n.º 29
0
 public async static Tasks.Task InstantiateAsync(AsyncPackageBase package)
 => await InstantiateAsync(new CancelBuildCommand(package));
Exemplo n.º 30
0
 private StartPagePlusOptions(AsyncPackageBase package)
     : base(package, PackageIds.StartPagePlusOptions)
 {
 }