Home Forums Software Development [C# WPF] Gazeable Button Reply To: [C# WPF] Gazeable Button

#6114
Anonymous
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… 🙁