diff --git a/RockDevBooster/App.xaml b/RockDevBooster/App.xaml
index 5a1a98b..cb437e7 100644
--- a/RockDevBooster/App.xaml
+++ b/RockDevBooster/App.xaml
@@ -10,6 +10,33 @@
+
+
+
+
diff --git a/RockDevBooster/GitHubVersions.xaml b/RockDevBooster/GitHubVersions.xaml
index a7b5eda..af5c49c 100644
--- a/RockDevBooster/GitHubVersions.xaml
+++ b/RockDevBooster/GitHubVersions.xaml
@@ -9,7 +9,7 @@
@@ -53,7 +53,7 @@
VerticalScrollBarVisibility="Visible"
Text="{Binding Text, Mode=OneWay}"
FontFamily="Consolas"
- BorderThickness="1"
+ BorderThickness="0 1 0 0"
IsReadOnly="True"
/>
diff --git a/RockDevBooster/InstancesView.xaml b/RockDevBooster/InstancesView.xaml
index 52a404c..0ae758f 100644
--- a/RockDevBooster/InstancesView.xaml
+++ b/RockDevBooster/InstancesView.xaml
@@ -11,27 +11,27 @@
diff --git a/RockDevBooster/MainWindow.xaml b/RockDevBooster/MainWindow.xaml
index 4692737..3bc5bba 100644
--- a/RockDevBooster/MainWindow.xaml
+++ b/RockDevBooster/MainWindow.xaml
@@ -12,7 +12,7 @@
MinWidth="400"
Background="#dbd5cb">
-
+
@@ -34,5 +34,38 @@
+
+
+
+
+
+
diff --git a/RockDevBooster/MainWindow.xaml.cs b/RockDevBooster/MainWindow.xaml.cs
index 117a87e..82ae2ba 100644
--- a/RockDevBooster/MainWindow.xaml.cs
+++ b/RockDevBooster/MainWindow.xaml.cs
@@ -27,6 +27,11 @@ public partial class MainWindow : Window
public MainWindow()
{
InitializeComponent();
+
+ foreach ( TabItem item in tcMain.Items )
+ {
+ item.Visibility = Visibility.Collapsed;
+ }
}
protected override void OnClosing( CancelEventArgs e )
@@ -40,5 +45,11 @@ protected override void OnSourceInitialized( EventArgs e )
base.OnSourceInitialized( e );
WindowPlacement.SetPlacement( new WindowInteropHelper( this ).Handle, Settings.Default.MainWindowPlacement );
}
+
+ private void btnMenu_Click( object sender, RoutedEventArgs e )
+ {
+ string name = ( ( Button ) sender ).CommandParameter.ToString();
+ tcMain.SelectedIndex = tcMain.Items.Cast().ToList().FindIndex( i => i.Header.ToString() == name );
+ }
}
}
diff --git a/RockDevBooster/PackageView.xaml b/RockDevBooster/PackageView.xaml
index 0e42607..9f03542 100644
--- a/RockDevBooster/PackageView.xaml
+++ b/RockDevBooster/PackageView.xaml
@@ -24,7 +24,7 @@
Click="btnBuildPackage_Click"
Style="{StaticResource buttonStyleIconAction}"/>
@@ -35,12 +35,12 @@
VerticalScrollBarVisibility="Visible"
Text="{Binding Text, Mode=OneWay}"
FontFamily="Consolas"
- BorderThickness="1"
+ BorderThickness="0 1 0 0"
IsReadOnly="True"
/>