diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2019-03-26 16:03:33 +0200 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2019-03-26 16:03:33 +0200 |
| commit | 5f241ab7a605f38c40a73308c622a1646b8f53d7 (patch) | |
| tree | d53581895ca4b1d2f428ce3eab6e959200925543 /Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/ScriptIDEView2.xaml | |
| parent | c346a2fe4ad743fc08bd26a05cff9df836a7c548 (diff) | |
| download | Tango-5f241ab7a605f38c40a73308c622a1646b8f53d7.tar.gz Tango-5f241ab7a605f38c40a73308c622a1646b8f53d7.zip | |
added key name for all ResourceDictionary
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 | 17 |
1 files changed, 9 insertions, 8 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 a182479d7..a28101a17 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 @@ -22,7 +22,7 @@ <RowDefinition Height="Auto"></RowDefinition> <RowDefinition Height="*"></RowDefinition> </Grid.RowDefinitions> - <Menu Grid.Row="0" HorizontalAlignment="Stretch" Margin="0,0,0,0"> + <Menu Grid.Row="0" HorizontalAlignment="Stretch" Margin="0,0,0,0" Style="{DynamicResource TangoMenuStyle}"> <MenuItem Header="File"> <MenuItem Header="New"></MenuItem> <MenuItem Header="Open"></MenuItem> @@ -54,7 +54,7 @@ <MenuItem Header="Theme"></MenuItem> </Menu> <ToolBarTray Grid.Row="1" Background="{DynamicResource Background.Static}" Width="Auto" Orientation="Horizontal"> - <ToolBar Background="{DynamicResource Background.Static}" Height="30" HorizontalAlignment="Left" Foreground="{DynamicResource ControlForegroundKey}"> + <ToolBar Style="{DynamicResource TangoToolBarStyle}" Background="{DynamicResource Background.Static}" Height="30" HorizontalAlignment="Left" Foreground="{DynamicResource ControlForegroundKey}"> <Button Click="Button_Click" ToolTip="New Project"> <Image Source="/Tango.Scripting.IDE;component/Images/NewFileCollection_16x.png" Height="16"/> @@ -69,7 +69,7 @@ <Image Source="/Tango.Scripting.IDE;component/Images/SaveAll_16x.png" Height="16"/> </Button> <Separator ></Separator> - <ComboBox Margin="2" x:Name="cmb2" SelectedIndex="0" HorizontalContentAlignment="Stretch" Width="100" > + <ComboBox Style="{DynamicResource TangoComboboxStyle}" Margin="2" x:Name="cmb2" SelectedIndex="0" HorizontalContentAlignment="Stretch" Width="100" > <ComboBoxItem IsSelected="True">Debug</ComboBoxItem> <ComboBoxItem >Release</ComboBoxItem> <ComboBoxItem>Configuration Manager...</ComboBoxItem> @@ -92,7 +92,7 @@ </Grid.RowDefinitions> <Grid> - <TabControl Foreground="{DynamicResource ControlForegroundKey}" ItemsSource="{Binding OpenProjectItems}" SelectedItem="{Binding SelectedProjectItem}"> + <TabControl Foreground="{DynamicResource ControlForegroundKey}" ItemsSource="{Binding OpenProjectItems}" SelectedItem="{Binding SelectedProjectItem}" Style="{DynamicResource TangoTabControlStyle}"> <TabControl.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Name}" Foreground="Gainsboro" VerticalAlignment="Center"></TextBlock> @@ -104,15 +104,16 @@ </DataTemplate> </TabControl.ContentTemplate> </TabControl> + </Grid> <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"> + <TabControl TabStripPlacement="Bottom" Style="{DynamicResource TangoTabControlStyle}"> <TabItem Header="Error list">error list</TabItem> <TabItem Header="Output">output</TabItem> - </TabControl> + </TabControl> </Border> </Grid> </Grid> @@ -120,8 +121,8 @@ <GridSplitter HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="1" Background="{DynamicResource Background.Static}" /> <Grid Grid.Column="2"> - <GroupBox Margin="0" Header="Solution Explorer" BorderThickness="1" > - <TreeView ItemsSource="{Binding Solution.Projects}" Background="{DynamicResource TabItem.Content.Static}" > + <GroupBox Margin="0,0,5,5" Header="Solution Explorer" BorderThickness="1" Style="{DynamicResource TangoGroupBoxStyle}" > + <TreeView Style="{DynamicResource TangoTreeViewStyle}" ItemsSource="{Binding Solution.Projects}" Background="{DynamicResource TabItem.Content.Static}" > <TreeView.ItemTemplate> <HierarchicalDataTemplate ItemsSource="{Binding Path=Items}" DataType="{x:Type local:IProject}"> <controls:SolutionItemControl SolutionItem="{Binding}" OpenCommand="{Binding ElementName=control,Path=DataContext.OpenProjectItemCommand}" /> |
