SettingsWindow.xaml
上传用户:liuqi822
上传日期:2022-03-21
资源大小:88k
文件大小:1k
- <Window x:Class="Screensaver1.SettingsWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="Screensaver Settings" Height="120" Width="400"
- WindowStyle="ToolWindow" ResizeMode="NoResize">
- <StackPanel Margin="10">
- <Grid>
- <Label>Twitter Hashcode:</Label>
- <TextBox Name="inputTextBox" Height="20" Margin="110,0,0,0" Text="{Binding TwitterHashcode, UpdateSourceTrigger=PropertyChanged}" />
- </Grid>
- <Grid Margin="0,20,0,0">
- <Button Width="80" HorizontalAlignment="Right" Margin="0,0,90,0" IsDefault="True" Click="OnAcceptButtonClick">Accept</Button>
- <Button Width="80" HorizontalAlignment="Right" IsCancel="True" Click="OnCancelButtonClick">Cancel</Button>
- </Grid>
- </StackPanel>
- </Window>