Advanced Distributed Systems module at HSLU
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
782 B

<Window x:Class="RobotClientWpf.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:RobotClientWpf"
mc:Ignorable="d"
Title="RobotClientWpf" Height="450" Width="800">
<Grid>
<Button x:Name="buttonBuzz" Content="Beep" HorizontalAlignment="Left" Margin="246,86,0,0" VerticalAlignment="Top" Click="buttonBuzz_Click"/>
<Label x:Name="labelBattery" Content="Battery: 1.25V" HorizontalAlignment="Left" Margin="22,27,0,0" VerticalAlignment="Top"/>
</Grid>
</Window>