xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="WPF" Height="100" Width="300">
A TextBox control with ContextMenu.
//File:Window.xaml.cs
using System.Windows;
namespace WpfApplication1
{
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
}
private void Clear_Click(object sender, RoutedEventArgs e)
{
txtTextBox.Clear();
}
private void SelectAll_Click(object sender, RoutedEventArgs e)
{
txtTextBox.SelectAll();
}
private void TextStyle_Click(object sender, RoutedEventArgs e)
{
if (sender == miNormal)
{
txtTextBox.FontWeight = FontWeights.Normal;
txtTextBox.FontStyle = FontStyles.Normal;
}
else if (sender == miBold)
{
txtTextBox.FontWeight = FontWeights.Bold;
}
else if (sender == miItalic)
{
txtTextBox.FontStyle = FontStyles.Italic;
}
}
}
}