Home › Forums › Software Development › [C# WPF] Gazeable Button › Reply To: [C# WPF] Gazeable Button
28/12/2016 at 20:58 #6114
Inactive
This is the right Button XAML definition:
<Grid Grid.Row="1">
<Border Style="{StaticResource buttonBorder}" Background="Black" CornerRadius="4"/>
<Button Name="button_1" Background="WhiteSmoke" BorderThickness="1"
Style="{StaticResource EyeXActivatableButtonStyle}"
Click="button_Click"
>1</Button>
</Grid>
But it is still not working… 🙁