Archivo XAML:
=======================================================================
<Window x:Class="WpfApp5.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp5"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Button Name="btn1" Background="Pink"
BorderBrush="Black" BorderThickness="1"
Click="OnClick1" ClickMode="Hover" Width="100" Height="100">
ClickMe1
</Button>
<Button Name="btn2" Background="LightBlue"
BorderBrush="Black" BorderThickness="1"
Click="OnClick2" ClickMode="Press" Width="100" Height="100" Margin="209,167,491,167">
ClickMe2
</Button>
<Button Name="btn3"
Click="OnClick3" ClickMode="Release" Width="100" Height="100" Margin="512,167,188,167">
Reset
</Button>
</Grid>
</Window>
No hay comentarios.:
Publicar un comentario