/V2.2/trunk/Quickstarts/Modularity/DirectoryLookupModularity/DirectoryLookupModularity/Styles/styles.xaml
# · XAML · 368 lines · 276 code · 47 blank · 45 comment · 0 complexity · 797410381d722dfeab71447a0b52cdd6 MD5 · raw file
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/interactivedesigner/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d">
-
- <!-- SimpleStyles.XAML defines a set of control styles which are simplified starting points for creating your own controls -->
-
- <!-- Brushes : These are used to define the color for background, foreground, selection, enabled etc of all controls
- If you want to change the color of a control you can just chnage the brush; if you want to add a new shape or change arrangement then also edit the template -->
-
- <!-- NormalBrush is used as the Background for SimpleButton, SimpleRepeatButton -->
- <LinearGradientBrush x:Key="NormalBrush" EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#EEE" Offset="0.0"/>
- <GradientStop Color="#CCC" Offset="1.0"/>
- </LinearGradientBrush>
- <LinearGradientBrush x:Key="NormalBorderBrush" EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#CCC" Offset="0.0"/>
- <GradientStop Color="#444" Offset="1.0"/>
- </LinearGradientBrush>
-
- <!-- LightBrush is used for content areas such as Menu, Tab Control background -->
- <LinearGradientBrush x:Key="LightBrush" EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#FFF" Offset="0.0"/>
- <GradientStop Color="#EEE" Offset="1.0"/>
- </LinearGradientBrush>
-
- <!-- MouseOverBrush is used for MouseOver in Button, Radio Button, CheckBox -->
- <LinearGradientBrush x:Key="MouseOverBrush" EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#FFF" Offset="0.0"/>
- <GradientStop Color="#AAA" Offset="1.0"/>
- </LinearGradientBrush>
-
- <!-- PressedBrush is used for Pressed in Button, Radio Button, CheckBox -->
- <LinearGradientBrush x:Key="PressedBrush" EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#BBB" Offset="0.0"/>
- <GradientStop Color="#EEE" Offset="0.1"/>
- <GradientStop Color="#EEE" Offset="0.9"/>
- <GradientStop Color="#FFF" Offset="1.0"/>
- </LinearGradientBrush>
- <LinearGradientBrush x:Key="PressedBorderBrush" EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#444" Offset="0.0"/>
- <GradientStop Color="#888" Offset="1.0"/>
- </LinearGradientBrush>
-
- <!-- SelectedBackgroundBrush is used for the Selected item in ListBoxItem, ComboBoxItem-->
- <SolidColorBrush x:Key="SelectedBackgroundBrush" Color="#DDD"/>
-
- <!-- Disabled Brushes are used for the Disabled look of each control -->
- <SolidColorBrush x:Key="DisabledForegroundBrush" Color="#888"/>
- <SolidColorBrush x:Key="DisabledBackgroundBrush" Color="#EEE"/>
- <SolidColorBrush x:Key="DisabledBorderBrush" Color="#AAA"/>
-
- <!-- Used for background of ScrollViewer, TreeView, ListBox, Expander, TextBox, Tab Control -->
- <SolidColorBrush x:Key="WindowBackgroundBrush" Color="#FFF"/>
-
- <!-- DefaultedBorderBrush is used to show KeyBoardFocus -->
- <LinearGradientBrush x:Key="DefaultedBorderBrush" EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#777" Offset="0.0"/>
- <GradientStop Color="#000" Offset="1.0"/>
- </LinearGradientBrush>
-
- <SolidColorBrush x:Key="SolidBorderBrush" Color="#888"/>
- <SolidColorBrush x:Key="LightBorderBrush" Color="#AAA"/>
- <SolidColorBrush x:Key="LightColorBrush" Color="#DDD"/>
-
- <!-- Used for Checkmark, Radio button, TreeViewItem, Expander ToggleButton glyphs -->
- <SolidColorBrush x:Key="GlyphBrush" Color="#444"/>
-
-
- <!-- Style and Template pairs are used to define each control Part -->
- <!-- The Style provides default values on the control; the Template gives the elements for each control -->
-
- <!-- SimpleButtonFocusVisual is used to show keyboard focus around a SimpleButton control -->
- <Style x:Key="SimpleButtonFocusVisual">
- <Setter Property="Control.Template">
- <Setter.Value>
- <ControlTemplate>
- <Border>
- <Rectangle Margin="2" Stroke="#60000000" StrokeThickness="1" StrokeDashArray="1 2"/>
- </Border>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
-
- <!-- Simple Button - This control sets brushes on each state. Note that these brushes must be listed above since they are static resources -->
- <Style x:Key="SimpleButton" TargetType="{x:Type Button}" BasedOn="{x:Null}">
- <Setter Property="FocusVisualStyle" Value="{DynamicResource SimpleButtonFocusVisual}"/>
- <Setter Property="Background" Value="{DynamicResource NormalBrush}"/>
- <Setter Property="BorderBrush" Value="{DynamicResource NormalBorderBrush}"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type Button}">
-
- <!-- We use Grid as a root because it is easy to add more elements to customize the button -->
- <Grid x:Name="Grid">
- <Border x:Name="Border" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Padding="{TemplateBinding Padding}"/>
-
- <!-- Content Presenter is where the text content etc is placed by the control -->
- <!-- The bindings are useful so that the control can be parameterized without editing the template -->
- <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" RecognizesAccessKey="True"/>
- </Grid>
-
- <!--Each state sets a brush on the Border in the template -->
- <ControlTemplate.Triggers>
- <Trigger Property="IsKeyboardFocused" Value="true">
- <Setter Property="BorderBrush" Value="{DynamicResource DefaultedBorderBrush}" TargetName="Border"/>
- </Trigger>
- <Trigger Property="IsMouseOver" Value="true">
- <Setter Property="Background" Value="{DynamicResource MouseOverBrush}" TargetName="Border"/>
- </Trigger>
- <Trigger Property="IsPressed" Value="true">
- <Setter Property="Background" Value="{DynamicResource PressedBrush}" TargetName="Border"/>
- <Setter Property="BorderBrush" Value="{DynamicResource PressedBorderBrush}" TargetName="Border"/>
- </Trigger>
- <Trigger Property="IsEnabled" Value="true"/>
- <Trigger Property="IsEnabled" Value="false">
- <Setter Property="Background" Value="{DynamicResource DisabledBackgroundBrush}" TargetName="Border"/>
- <Setter Property="BorderBrush" Value="{DynamicResource DisabledBorderBrush}" TargetName="Border"/>
- <Setter Property="Foreground" Value="{DynamicResource DisabledForegroundBrush}"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
-
-
- <!-- Simple ComboBox Toggle Button - This is used in ComboBox to expand and collapse the ComboBox Popup-->
- <ControlTemplate x:Key="ComboBoxToggleButton" TargetType="{x:Type ToggleButton}">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition Width="20"/>
- </Grid.ColumnDefinitions>
- <Rectangle Grid.ColumnSpan="2" HorizontalAlignment="Stretch" x:Name="Rectangle" VerticalAlignment="Stretch" Width="Auto" Height="Auto" RadiusX="5" RadiusY="5" Fill="{DynamicResource NormalBrush}" Stroke="{DynamicResource NormalBorderBrush}"/>
- <Rectangle Grid.Column="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Width="Auto" Height="Auto" RadiusX="5" RadiusY="5" Fill="{DynamicResource WindowBackgroundBrush}" Stroke="{DynamicResource NormalBorderBrush}"/>
- <Path Grid.Column="1" HorizontalAlignment="Center" x:Name="Arrow" VerticalAlignment="Center" Fill="{DynamicResource GlyphBrush}" Data="M 0 0 L 4 4 L 8 0 Z"/>
- </Grid>
- <ControlTemplate.Triggers>
- <Trigger Property="IsMouseOver" Value="true">
- <Setter Property="Fill" Value="{DynamicResource MouseOverBrush}" TargetName="Rectangle"/>
- </Trigger>
- <Trigger Property="IsChecked" Value="true">
- <Setter Property="Fill" Value="{DynamicResource PressedBrush}" TargetName="Rectangle"/>
- </Trigger>
- <Trigger Property="IsEnabled" Value="False">
- <Setter Property="Fill" Value="{DynamicResource DisabledBackgroundBrush}" TargetName="Rectangle"/>
- <Setter Property="Stroke" Value="{DynamicResource DisabledBorderBrush}" TargetName="Rectangle"/>
- <Setter Property="Foreground" Value="{DynamicResource DisabledForegroundBrush}"/>
- <Setter Property="Fill" Value="{DynamicResource DisabledForegroundBrush}" TargetName="Arrow"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
-
- <!-- This is the area which contains the selected item in the ComboBox -->
-
- <ControlTemplate x:Key="ComboBoxTextBox" TargetType="{x:Type TextBox}">
- <!-- This must be named as PART_ContentHost -->
- <Border x:Name="PART_ContentHost" Focusable="False" Background="{TemplateBinding Background}"/>
- </ControlTemplate>
-
- <!-- Simple ComboBox
- This uses the ComboBoxToggleButton to expand and collapse a Popup control
- SimpleScrollViewer to allow items to be scrolled and SimpleComboBoxItem to define the look of each item
- The Popup shows a list of items in a StackPanel-->
-
- <Style x:Key="SimpleComboBox" TargetType="{x:Type ComboBox}">
- <Setter Property="SnapsToDevicePixels" Value="true"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type ComboBox}">
- <Grid>
- <!-- The ToggleButton is databound to the ComboBox itself to toggle IsDropDownOpen -->
- <ToggleButton Grid.Column="2" Template="{DynamicResource ComboBoxToggleButton}" x:Name="ToggleButton" Focusable="false" IsChecked="{Binding Path=IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}" ClickMode="Press"/>
- <ContentPresenter HorizontalAlignment="Left" Margin="3,3,23,3" x:Name="ContentSite" VerticalAlignment="Center" Content="{TemplateBinding SelectionBoxItem}" ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}" ContentTemplateSelector="{TemplateBinding ItemTemplateSelector}" IsHitTestVisible="False"/>
-
- <!-- The TextBox must be named PART_EditableTextBox or ComboBox will not recognize it -->
- <TextBox Visibility="Hidden" Template="{DynamicResource ComboBoxTextBox}" HorizontalAlignment="Left" Margin="3,3,23,3" x:Name="PART_EditableTextBox" Style="{x:Null}" VerticalAlignment="Center" Focusable="True" Background="Transparent" IsReadOnly="{TemplateBinding IsReadOnly}"/>
-
- <!-- The Popup shows the list of items in the ComboBox. IsOpen is databound to IsDropDownOpen which is toggled via the ComboBoxToggleButton -->
- <Popup IsOpen="{TemplateBinding IsDropDownOpen}" Placement="Bottom" x:Name="Popup" Focusable="False" AllowsTransparency="True" PopupAnimation="Slide">
- <Grid MaxHeight="{TemplateBinding MaxDropDownHeight}" MinWidth="{TemplateBinding ActualWidth}" x:Name="DropDown" SnapsToDevicePixels="True">
- <Border x:Name="DropDownBorder" Background="{DynamicResource WindowBackgroundBrush}" BorderBrush="{DynamicResource SolidBorderBrush}" BorderThickness="1"/>
- <ScrollViewer Margin="4,6,4,6" Style="{DynamicResource SimpleScrollViewer}" SnapsToDevicePixels="True" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto" CanContentScroll="True">
-
- <!-- The StackPanel is used to display the children by setting IsItemsHost to be True -->
- <StackPanel IsItemsHost="True" KeyboardNavigation.DirectionalNavigation="Contained"/>
-
- </ScrollViewer>
- </Grid>
- </Popup>
- </Grid>
- <ControlTemplate.Triggers>
- <!-- This forces the DropDown to have a minimum size if it is empty -->
- <Trigger Property="HasItems" Value="false">
- <Setter Property="MinHeight" Value="95" TargetName="DropDownBorder"/>
- </Trigger>
- <Trigger Property="IsEnabled" Value="false">
- <Setter Property="Foreground" Value="{DynamicResource DisabledForegroundBrush}"/>
- </Trigger>
- <Trigger Property="IsGrouping" Value="true">
- <Setter Property="ScrollViewer.CanContentScroll" Value="false"/>
- </Trigger>
- <Trigger Property="AllowsTransparency" SourceName="Popup" Value="true">
- <Setter Property="CornerRadius" Value="4" TargetName="DropDownBorder"/>
- <Setter Property="Margin" Value="0,2,0,0" TargetName="DropDownBorder"/>
- </Trigger>
- <Trigger Property="IsEditable" Value="true">
- <Setter Property="IsTabStop" Value="false"/>
- <Setter Property="Visibility" Value="Visible" TargetName="PART_EditableTextBox"/>
- <Setter Property="Visibility" Value="Hidden" TargetName="ContentSite"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
-
- <!-- Simple ComboBoxItem - This is used for each item inside of the ComboBox. You can change the selected color of each item below-->
- <Style x:Key="SimpleComboBoxItem" d:IsControlPart="True" TargetType="{x:Type ComboBoxItem}">
- <Setter Property="SnapsToDevicePixels" Value="true"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type ComboBoxItem}">
- <Grid SnapsToDevicePixels="true">
- <Border x:Name="Border" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}"/>
- <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
- </Grid>
- <ControlTemplate.Triggers>
-
- <!-- Change IsHighlighted SelectedBackgroundBrush to set the selection color for the items -->
- <Trigger Property="IsHighlighted" Value="true">
- <Setter Property="Background" Value="{DynamicResource SelectedBackgroundBrush}" TargetName="Border"/>
- </Trigger>
-
- <Trigger Property="IsEnabled" Value="false">
- <Setter Property="Foreground" Value="{DynamicResource DisabledForegroundBrush}"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
-
-
- <!-- Simple TextBox -->
- <Style x:Key="SimpleTextBox" TargetType="{x:Type TextBox}">
- <Setter Property="KeyboardNavigation.TabNavigation" Value="None"/>
- <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
- <Setter Property="AllowDrop" Value="true"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type TextBox}">
- <Grid>
- <Border x:Name="Border" Background="{DynamicResource WindowBackgroundBrush}" BorderBrush="{DynamicResource SolidBorderBrush}" BorderThickness="1" Padding="2" CornerRadius="2">
-
- <!-- The implementation places the Content into the ScrollViewer. It must be named PART_ContentHost for the control to function -->
- <ScrollViewer Margin="0" x:Name="PART_ContentHost" Style="{DynamicResource SimpleScrollViewer}" Background="{TemplateBinding Background}"/>
-
- </Border>
- </Grid>
- <ControlTemplate.Triggers>
- <Trigger Property="IsEnabled" Value="False">
- <Setter Property="Background" Value="{DynamicResource DisabledBackgroundBrush}" TargetName="Border"/>
- <Setter Property="BorderBrush" Value="{DynamicResource DisabledBackgroundBrush}" TargetName="Border"/>
- <Setter Property="Foreground" Value="{DynamicResource DisabledForegroundBrush}"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
-
- <!-- Simple Label - This template is just a ContentPresenter that shows the content of the Label -->
- <Style x:Key="SimpleLabel" TargetType="{x:Type Label}">
- <Setter Property="HorizontalContentAlignment" Value="Left"/>
- <Setter Property="VerticalContentAlignment" Value="Top"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type Label}">
- <Grid>
- <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" RecognizesAccessKey="True"/>
- </Grid>
- <ControlTemplate.Triggers>
- <Trigger Property="IsEnabled" Value="false"/>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
-
- <!-- Simple Separator - This template is used for a Separator in a menu -->
- <Style x:Key="SimpleSeparator" TargetType="{x:Type Separator}">
- <Setter Property="Height" Value="1"/>
- <Setter Property="Margin" Value="0,2,0,2"/>
- <Setter Property="Focusable" Value="false"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type Separator}">
- <Border BorderBrush="{DynamicResource SolidBorderBrush}" BorderThickness="1"/>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
-
- <!-- Simple TabControl
- This template uses Simple TabItem for each Tab. The TabItems are placed in the TabPanel
- Limitations : The Simple TabControl only allow the Tabs to be shown at the top of the Tab control. You can re-position the TabPanel to change this-->
-
- <Style x:Key="SimpleTabControl" TargetType="{x:Type TabControl}">
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type TabControl}">
- <Grid KeyboardNavigation.TabNavigation="Local">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
-
- <!-- TabPanel is a layout container which allows the TabItems to wrap and re-order when selected
- The implementation knows to use this control because it is marked IsItemsHost = True -->
- <TabPanel Grid.Row="0" Margin="0,0,4,-1" x:Name="HeaderPanel" Background="Transparent" IsItemsHost="True" Panel.ZIndex="1" KeyboardNavigation.TabIndex="1"/>
-
- <Border Grid.Row="1" x:Name="Border" Background="{DynamicResource WindowBackgroundBrush}" BorderBrush="{DynamicResource SolidBorderBrush}" BorderThickness="1" CornerRadius="2" KeyboardNavigation.DirectionalNavigation="Contained" KeyboardNavigation.TabNavigation="Local" KeyboardNavigation.TabIndex="2">
-
- <!-- The implementation switches the content. This control must be named PART_SelectedContentHost -->
- <ContentPresenter Margin="4" x:Name="PART_SelectedContentHost" ContentSource="SelectedContent"/>
-
- </Border>
- </Grid>
-
- <ControlTemplate.Triggers>
- <Trigger Property="IsEnabled" Value="False">
- <Setter Property="Foreground" Value="{DynamicResource DisabledForegroundBrush}"/>
- <Setter Property="BorderBrush" Value="{DynamicResource DisabledBorderBrush}" TargetName="Border"/>
- </Trigger>
- </ControlTemplate.Triggers>
-
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
-
- <!--Simple TabItem -->
- <Style x:Key="SimpleTabItem" d:IsControlPart="True" TargetType="{x:Type TabItem}">
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type TabItem}">
- <Grid>
- <Border Margin="0,0,-4,0" x:Name="Border" Background="{DynamicResource LightBrush}" BorderBrush="{DynamicResource SolidBorderBrush}" BorderThickness="1,1,1,1" CornerRadius="2,12,0,0">
- <ContentPresenter HorizontalAlignment="Center" Margin="12,2,12,2" x:Name="ContentSite" VerticalAlignment="Center" RecognizesAccessKey="True" ContentSource="Header"/>
- </Border>
- </Grid>
- <ControlTemplate.Triggers>
- <Trigger Property="IsSelected" Value="True">
- <Setter Property="Panel.ZIndex" Value="100"/>
- <Setter Property="Background" Value="{DynamicResource WindowBackgroundBrush}" TargetName="Border"/>
- <Setter Property="BorderThickness" Value="1,1,1,0" TargetName="Border"/>
- </Trigger>
- <Trigger Property="IsEnabled" Value="False">
- <Setter Property="Background" Value="{DynamicResource DisabledBackgroundBrush}" TargetName="Border"/>
- <Setter Property="BorderBrush" Value="{DynamicResource DisabledBorderBrush}" TargetName="Border"/>
- <Setter Property="Foreground" Value="{DynamicResource DisabledForegroundBrush}"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </ResourceDictionary>