diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2019-03-24 10:53:51 +0200 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2019-03-24 10:53:51 +0200 |
| commit | 7fc22427e4897f3f9a38ee14256c8779c5f1c9fc (patch) | |
| tree | 54a577da84226d2df5bde994a4c076325f7e39cf /Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/ScriptIDEView2.xaml | |
| parent | c73929a0e75705cdb8adbbdb45ea017e3bb09374 (diff) | |
| download | Tango-7fc22427e4897f3f9a38ee14256c8779c5f1c9fc.tar.gz Tango-7fc22427e4897f3f9a38ee14256c8779c5f1c9fc.zip | |
added bottom tab header style
Diffstat (limited to 'Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/ScriptIDEView2.xaml')
| -rw-r--r-- | Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/ScriptIDEView2.xaml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/ScriptIDEView2.xaml b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/ScriptIDEView2.xaml index 218686f5d..5caf20329 100644 --- a/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/ScriptIDEView2.xaml +++ b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/ScriptIDEView2.xaml @@ -87,8 +87,7 @@ </Grid.RowDefinitions> <Grid> - <TabControl ItemsSource="{Binding OpenProjectItems}" SelectedItem="{Binding SelectedProjectItem}"> - + <TabControl Foreground="{DynamicResource ControlForegroundKey}" ItemsSource="{Binding OpenProjectItems}" SelectedItem="{Binding SelectedProjectItem}"> <TabControl.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Name}" Foreground="Gainsboro" VerticalAlignment="Center"></TextBlock> @@ -104,14 +103,20 @@ <GridSplitter HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Row="1" Background="{DynamicResource Background.Static}" /> <Grid Grid.Row="2" Background="{DynamicResource Background.Static}"> + <Border BorderThickness="0" Margin="1,0,0,2"> + <TabControl TabStripPlacement="Bottom"> + <TabItem Header="Error list">error list</TabItem> + <TabItem Header="Output">output</TabItem> + </TabControl> + </Border> </Grid> </Grid> <GridSplitter HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="1" Background="{DynamicResource Background.Static}" /> <Grid Grid.Column="2"> - <GroupBox Margin="0" Header="Solution Explorer" BorderThickness="1" BorderBrush="{StaticResource IdeBorderBrush}" > - <TreeView ItemsSource="{Binding Solution.Projects}" Background="{StaticResource IdeMidBackgroundBrush}" > + <GroupBox Margin="0" Header="Solution Explorer" BorderThickness="1" > + <TreeView ItemsSource="{Binding Solution.Projects}" Background="{DynamicResource TabItem.Content.Static}" > <TreeView.ItemContainerStyle> <Style TargetType="TreeViewItem" BasedOn="{StaticResource {x:Type TreeViewItem}}"> <Setter Property="Background" Value="Transparent"></Setter> |
