added samples
[windows-sources.git] / sdk / samples / WPFSamples / AccessText / csharp / pane1.xaml.cs
blobfa4fa88d55e183a8db3f4abd4d2072c572d5cd34
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4 using System.Windows;
5 using System.Windows.Controls;
7 namespace AccessTextSimple
9 partial class Pane1 : StackPanel
11 public Pane1()
13 InitializeComponent();
14 //button1.Click += new RoutedEventHandler(edit_Click);
17 void edit_Click(object sender, RoutedEventArgs e)
19 MessageBox.Show("Edit button");
21 void cut_Click(object sender, RoutedEventArgs e)
23 MessageBox.Show("Cut button");
26 void hello_Click(object sender, RoutedEventArgs e)
28 MessageBox.Show("Hello button");