diff options
| author | Michael <[email protected]> | 2017-01-08 09:57:10 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-01-08 09:57:10 -0500 |
| commit | f30dcf5ef41d54c588d7b42c48be8d941abba72e (patch) | |
| tree | 7705f99b965673b1c034ac2b1c56e65072c827df /ShiftOS.Wpf/OOBE.xaml | |
| parent | 69dfad54724d4176dfce238a8d7e73970e6eef24 (diff) | |
| download | shiftos_thereturn-f30dcf5ef41d54c588d7b42c48be8d941abba72e.tar.gz shiftos_thereturn-f30dcf5ef41d54c588d7b42c48be8d941abba72e.tar.bz2 shiftos_thereturn-f30dcf5ef41d54c588d7b42c48be8d941abba72e.zip | |
Initial upload
Diffstat (limited to 'ShiftOS.Wpf/OOBE.xaml')
| -rw-r--r-- | ShiftOS.Wpf/OOBE.xaml | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/ShiftOS.Wpf/OOBE.xaml b/ShiftOS.Wpf/OOBE.xaml new file mode 100644 index 0000000..b081637 --- /dev/null +++ b/ShiftOS.Wpf/OOBE.xaml @@ -0,0 +1,58 @@ +<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> |
