diff options
| author | Michael <[email protected]> | 2017-02-13 09:05:25 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-13 09:05:25 -0500 |
| commit | e8dfafa17a492bdba99151379d5d4926c267dde5 (patch) | |
| tree | bdc21f8c028e03f987920d581c0aaad3b1168938 /ShiftOS.Wpf/OOBE.xaml | |
| parent | 14bd25bab6dbed116c194d392e887c68a90c4d73 (diff) | |
| download | shiftos_thereturn-e8dfafa17a492bdba99151379d5d4926c267dde5.tar.gz shiftos_thereturn-e8dfafa17a492bdba99151379d5d4926c267dde5.tar.bz2 shiftos_thereturn-e8dfafa17a492bdba99151379d5d4926c267dde5.zip | |
ugh more debugging
Diffstat (limited to 'ShiftOS.Wpf/OOBE.xaml')
| -rw-r--r-- | ShiftOS.Wpf/OOBE.xaml | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/ShiftOS.Wpf/OOBE.xaml b/ShiftOS.Wpf/OOBE.xaml deleted file mode 100644 index b081637..0000000 --- a/ShiftOS.Wpf/OOBE.xaml +++ /dev/null @@ -1,58 +0,0 @@ -<UserControl x:Class="ShiftOS.Wpf.OOBE" - xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - xmlns:d="http://schemas.microsoft.com/expression/blend/2008" - xmlns:local="clr-namespace:ShiftOS.Wpf" - mc:Ignorable="d" - Height="480" Width="720" Background="Black" Foreground="White"> - <TabControl BorderThickness="0" x:Name="tabControl" SelectedItem="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> - <TabItem BorderThickness="0" Header="Welcome" Visibility="Collapsed"> - <StackPanel Background="Black"> - <TextBlock Foreground="White" FontSize="20" Margin="5" TextAlignment="Center">Welcome to ShiftOS.</TextBlock> - - <TextBlock Foreground="White" TextAlignment="Center" FontSize="15" TextWrapping="Wrap">You have been selected to be part of the testing and development of an experimental operating system named ShiftOS. - <LineBreak/> - <LineBreak/> - This wizard will guide you through the process of setting up ShiftOS. - <LineBreak/> - <LineBreak/> - <TextBlock FontSize="20">First: Select your language.</TextBlock> - </TextBlock> - <ListBox SelectionChanged="lblanguages_SelectionChanged" Background="#44FFFFFF" Foreground="White" Style="{DynamicResource ShiftedListBox}" Margin="15" x:Name="lblanguages"> - - </ListBox> - <StackPanel x:Name="userInfo" Visibility="Collapsed"> - <TextBlock FontSize="20" Foreground="White" TextAlignment="Center">Next: System Information</TextBlock> - - <DockPanel LastChildFill="True" Margin="5"> - <TextBlock DockPanel.Dock="Left" Margin="5" Foreground="White">Username:</TextBlock> - <TextBox x:Name="txtusername" Margin="5" TextChanged="txtusername_TextChanged"></TextBox> - </DockPanel> - <DockPanel LastChildFill="True" Margin="5"> - <TextBlock DockPanel.Dock="Left" Margin="5" Foreground="White">Password:</TextBlock> - <PasswordBox x:Name="txtpassword" Margin="5" PasswordChanged="txtpassword_PasswordChanged"></PasswordBox> - </DockPanel> - <DockPanel LastChildFill="True" Margin="5"> - <TextBlock DockPanel.Dock="Left" Margin="5" Foreground="White">System name:</TextBlock> - <TextBox x:Name="txtsysname" Margin="5" TextChanged="txtsysname_TextChanged"></TextBox> - </DockPanel> - </StackPanel> - <Button Visibility="Collapsed" Foreground="White" x:Name="nextLabel" Click="moveforward_Click">Move forward.</Button> - </StackPanel> - </TabItem> - <TabItem Header="TabItem" Visibility="Collapsed"> - <DockPanel Background="Black" LastChildFill="True"> - <ProgressBar x:Name="pgprogress" Background="#3FFFFFFF" Foreground="#3FFFFFFF" Value="50" Maximum="100" Height="25" DockPanel.Dock="Bottom"> - - </ProgressBar> - <TextBox TextWrapping="Wrap" x:Name="txtterm" Background="#3FFFFFFF" Foreground="White" BorderThickness="0" IsReadOnly="True" DockPanel.Dock="Right" HorizontalAlignment="Center" VerticalAlignment="Center" Width="320" Height="200" Margin="15"></TextBox> - <StackPanel Margin="40"> - <TextBlock Foreground="White" FontSize="20" x:Name="oobehead">Header</TextBlock> - <TextBlock/> - <TextBlock TextWrapping="Wrap" Foreground="White" FontSize="15" x:Name="oobedesc">This is some text.</TextBlock> - </StackPanel> - </DockPanel> - </TabItem> - </TabControl> -</UserControl> |
