Browse Source

Fix mixed tabs and spaces formatting on PackageManagement xaml files.

4.1
Matt Ward 15 years ago
parent
commit
164a379a97
  1. 2
      src/AddIns/Misc/PackageManagement/Project/Src/ManagePackagesView.xaml
  2. 4
      src/AddIns/Misc/PackageManagement/Project/Src/PagedResultsView.xaml
  3. 106
      src/AddIns/Misc/PackageManagement/Project/Src/Scripting/PackageManagementConsoleView.xaml

2
src/AddIns/Misc/PackageManagement/Project/Src/ManagePackagesView.xaml

@ -18,7 +18,7 @@ @@ -18,7 +18,7 @@
<BitmapImage x:Key="ErrorIcon"
UriSource="pack://application:,,,/PackageManagement;component/Resources/exclamation.png"/>
</Window.Resources>
</Window.Resources>
<Window.DataContext>
<Binding Source="{StaticResource ViewModels}" Path="ManagePackagesViewModel"/>

4
src/AddIns/Misc/PackageManagement/Project/Src/PagedResultsView.xaml

@ -41,8 +41,8 @@ @@ -41,8 +41,8 @@
Padding="0,2"
VerticalAlignment="Top">
<Image Source="{StaticResource PreviousPageIcon}"
Height="16"
Width="16"/>
Height="16"
Width="16"/>
</Button>
<ListBox
VerticalAlignment="Top"

106
src/AddIns/Misc/PackageManagement/Project/Src/Scripting/PackageManagementConsoleView.xaml

@ -1,76 +1,76 @@ @@ -1,76 +1,76 @@
<UserControl
x:Class="ICSharpCode.PackageManagement.Scripting.PackageManagementConsoleView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:core="http://icsharpcode.net/sharpdevelop/core"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:pmd="clr-namespace:ICSharpCode.PackageManagement"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="500">
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:pmd="clr-namespace:ICSharpCode.PackageManagement"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="500">
<UserControl.Resources>
<pmd:PackageManagementViewModels x:Key="ViewModels"/>
<UserControl.Resources>
<pmd:PackageManagementViewModels x:Key="ViewModels"/>
<DataTemplate x:Key="PackageSourceTemplate">
<TextBlock Text="{Binding Name}"/>
</DataTemplate>
<DataTemplate x:Key="PackageSourceTemplate">
<TextBlock Text="{Binding Name}"/>
</DataTemplate>
<DataTemplate x:Key="ProjectTemplate">
<TextBlock Text="{Binding Name}"/>
</DataTemplate>
<DataTemplate x:Key="ProjectTemplate">
<TextBlock Text="{Binding Name}"/>
</DataTemplate>
</UserControl.Resources>
</UserControl.Resources>
<UserControl.DataContext>
<Binding Path="PackageManagementConsoleViewModel" Source="{StaticResource ViewModels}"/>
</UserControl.DataContext>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<ToolBar>
<TextBlock
Margin="4"
Text="Package Source:"/>
<ToolBar>
<TextBlock
Margin="4"
Text="Package Source:"/>
<ComboBox
Grid.Column="1"
MinWidth="200"
SelectedItem="{Binding Path=ActivePackageSource}"
ItemTemplate="{StaticResource PackageSourceTemplate}"
ItemsSource="{Binding Path=PackageSources}"/>
<ComboBox
Grid.Column="1"
MinWidth="200"
SelectedItem="{Binding Path=ActivePackageSource}"
ItemTemplate="{StaticResource PackageSourceTemplate}"
ItemsSource="{Binding Path=PackageSources}"/>
<TextBlock
Grid.Column="2"
Margin="4"
Text="Default Project:"/>
<TextBlock
Grid.Column="2"
Margin="4"
Text="Default Project:"/>
<ComboBox
Grid.Column="3"
MinWidth="200"
SelectedItem="{Binding Path=DefaultProject}"
ItemTemplate="{StaticResource ProjectTemplate}"
ItemsSource="{Binding Path=Projects}"/>
<Button
<ComboBox
Grid.Column="3"
MinWidth="200"
SelectedItem="{Binding Path=DefaultProject}"
ItemTemplate="{StaticResource ProjectTemplate}"
ItemsSource="{Binding Path=Projects}"/>
<Button
Grid.Column="4"
ToolTip="{core:Localize MainWindow.Windows.CompilerMessageView.ClearAllButton.ToolTip}"
Command="{Binding Path=ClearConsoleCommand}">
<Image
Source="{core:GetBitmap OutputPad.Toolbar.ClearOutputWindow}"
Command="{Binding Path=ClearConsoleCommand}">
<Image
Source="{core:GetBitmap OutputPad.Toolbar.ClearOutputWindow}"
Height="16"
Width="16"/>
</Button>
</ToolBar>
<ContentControl
</Button>
</ToolBar>
<ContentControl
Grid.Row="1"
Margin="4, 0"
Margin="4, 0"
Content="{Binding Path=TextEditor}"/>
</Grid>
</Grid>
</UserControl>
Loading…
Cancel
Save