diff options
author | Paul Rouget <me@paulrouget.com> | 2019-07-24 15:14:24 +0200 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2019-07-25 05:47:56 +0200 |
commit | d0436f16b6abd19306e65de15967b49331d64f13 (patch) | |
tree | 27e73e6568b7cf609fa896116656ac50b0f5c2fe /support/hololens/ServoApp/BrowserPage.xaml | |
parent | 7adf022dfa2b4b29728bd599d5eaf197be572c88 (diff) | |
download | servo-d0436f16b6abd19306e65de15967b49331d64f13.tar.gz servo-d0436f16b6abd19306e65de15967b49331d64f13.zip |
More events, remove most of the statics, better shutdown
Diffstat (limited to 'support/hololens/ServoApp/BrowserPage.xaml')
-rw-r--r-- | support/hololens/ServoApp/BrowserPage.xaml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/support/hololens/ServoApp/BrowserPage.xaml b/support/hololens/ServoApp/BrowserPage.xaml index 4247c9a1f68..f6e6e227318 100644 --- a/support/hololens/ServoApp/BrowserPage.xaml +++ b/support/hololens/ServoApp/BrowserPage.xaml @@ -20,8 +20,10 @@ <ColumnDefinition Width="auto"/> </Grid.ColumnDefinitions> <StackPanel Orientation="Horizontal" Grid.Column="0"> - <Button Content="Back" Click="OnBackButtonClicked"/> - <Button Content="Forward" Click="OnForwardButtonClicked"/> + <Button x:Name="backButton" IsEnabled="false" Content="Back" Click="OnBackButtonClicked"/> + <Button x:Name="forwardButton" IsEnabled="false" Content="Forward" Click="OnForwardButtonClicked"/> + <Button x:Name="reloadButton" IsEnabled="false" Content="reload" Click="OnReloadButtonClicked"/> + <Button x:Name="stopButton" IsEnabled="false" Content="stop" Click="OnStopButtonClicked"/> </StackPanel> <TextBox Text="" AcceptsReturn="True" PlaceholderText="Type a URL" x:Name="urlTextbox" Grid.Column="1" IsReadOnly="True"/> <StackPanel Orientation="Horizontal" Grid.Column="2"> |