mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
* Add article, toc, and redirects * Add code snippets * Fix a note in a prior event article * Add tip and fix lnk * Simplify snippet
16 lines
548 B
XML
16 lines
548 B
XML
<Window x:Class="CodeSampleVb.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Visual Basic and WPF event handling" Height="100" Width="400">
|
|
|
|
<!--<ButtonCreatedByXaml>-->
|
|
<StackPanel Name="StackPanel1">
|
|
<Button
|
|
Name="XamlButton"
|
|
Content="Create a new button with an event handler"
|
|
Background="LightGray">
|
|
</Button>
|
|
</StackPanel>
|
|
<!--</ButtonCreatedByXaml>-->
|
|
</Window>
|