WPF - Cut & Copy & paste buttons in a toolbar. NO CODE

Post date: Jun 16, 2011 2:38:44 PM

<StackPanel> <ToolBar> <Button Command="{x:Static ApplicationCommands.Cut}">Cut</Button> <Button Command="{x:Static ApplicationCommands.Copy}">Copy</Button> <Button Command="{x:Static ApplicationCommands.Paste}">Paste</Button> </ToolBar> <TextBox x:Name="MyLittleTextbox" AcceptsReturn="True" TextWrapping="Wrap" VerticalScrollBarVisibility="Visible" ></TextBox> </StackPanel>