MainWindow.xaml 1.1 KB

123456789101112131415
  1. <Window x:Class="VTExperiment1.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:VTExperiment1"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="346.6" Width="872">
  9. <Grid>
  10. <Button x:Name="DISTINCT" Content="More than 1 Point" HorizontalAlignment="Left" Height="131" Margin="9,96,0,0" VerticalAlignment="Top" Width="273" FontWeight="Bold" FontSize="24" Click="DISTINCT_Click"/>
  11. <Button x:Name="NONDISTINCT" Content="1-Point" HorizontalAlignment="Left" Height="131" Margin="294,96,0,0" VerticalAlignment="Top" Width="273" FontWeight="Bold" FontSize="24" Click="NONDISTINCT_Click"/>
  12. <Button x:Name="VIBRATE" Content="Vibrate" HorizontalAlignment="Left" Height="131" Margin="581,96,0,0" VerticalAlignment="Top" Width="273" FontWeight="Bold" FontSize="24" Click="VIBRATE_Click"/>
  13. </Grid>
  14. </Window>