Commit
This commit is contained in:
parent
8b61ca41fa
commit
17883e16e1
41 changed files with 3173 additions and 0 deletions
35
VSPackageInstall/MyControl.xaml.cs
Normal file
35
VSPackageInstall/MyControl.xaml.cs
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace VitaliiGanzha.VSPackageInstall
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for MyControl.xaml
|
||||
/// </summary>
|
||||
public partial class MyControl : UserControl
|
||||
{
|
||||
public MyControl()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Globalization", "CA1300:SpecifyMessageBoxOptions")]
|
||||
private void button1_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
MessageBox.Show(string.Format(System.Globalization.CultureInfo.CurrentUICulture, "We are inside {0}.button1_Click()", this.ToString()),
|
||||
"VS Ding");
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue