aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/ScriptIDEView2.xaml
diff options
context:
space:
mode:
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.xaml41
1 files changed, 18 insertions, 23 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 5caf20329..a182479d7 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="5,0,0,0">
+ <Menu Grid.Row="0" HorizontalAlignment="Stretch" Margin="0,0,0,0">
<MenuItem Header="File">
<MenuItem Header="New"></MenuItem>
<MenuItem Header="Open"></MenuItem>
@@ -54,21 +54,26 @@
<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">
- <Label Foreground="{DynamicResource ControlForegroundKey}" FontSize="12" Content="Stitches"/>
- <Button Click="Button_Click" ToolTip="Cut selection to Windows Clipboard.">
- <StackPanel Orientation="Horizontal">
- <TextBlock Margin="3,0,0,0"><Run Text="Cut"/></TextBlock>
- </StackPanel>
+ <ToolBar 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"/>
</Button>
- <Button Click="Button_Click" ToolTip="Copy selection to Windows Clipboard.">
- Copy
+ <Button Click="Button_Click" ToolTip="Open File">
+ <Image Source="/Tango.Scripting.IDE;component/Images/OpenFolder_16x.png" Height="16"/>
</Button>
- <Button Foreground="White" Click="Button_Click" ToolTip="Paste from Windows Clipboard.">
- <StackPanel Orientation="Horizontal">
- <TextBlock Margin="3,0,0,0"><Run Text="Paste"/></TextBlock>
- </StackPanel>
+ <Button Click="Button_Click" ToolTip="Open File">
+ <Image Source="/Tango.Scripting.IDE;component/Images/Save_16x.png" Height="16"/>
</Button>
+ <Button Click="Button_Click" ToolTip="Open File">
+ <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" >
+ <ComboBoxItem IsSelected="True">Debug</ComboBoxItem>
+ <ComboBoxItem >Release</ComboBoxItem>
+ <ComboBoxItem>Configuration Manager...</ComboBoxItem>
+ </ComboBox>
<Button Foreground="White" Click="Button_Click" Content="Cut" ToolBar.OverflowMode="Always" />
</ToolBar>
</ToolBarTray>
@@ -117,16 +122,6 @@
<Grid Grid.Column="2">
<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>
- <Style.Triggers>
- <Trigger Property="IsMouseOver" Value="True">
- <Setter Property="Background" Value="Transparent"></Setter>
- </Trigger>
- </Style.Triggers>
- </Style>
- </TreeView.ItemContainerStyle>
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Path=Items}" DataType="{x:Type local:IProject}">
<controls:SolutionItemControl SolutionItem="{Binding}" OpenCommand="{Binding ElementName=control,Path=DataContext.OpenProjectItemCommand}" />