2009-06-26 18 views
12

उपयोगकर्ता datagrid में एक पंक्ति पर क्लिक करता है (या कीबोर्ड का उपयोग करता है) जब में पूरे पंक्तियों को हाइलाइट करें, तो उस पंक्ति का चयन किया जाता है, लेकिन विशेष सेल वे पर क्लिक किया भी अपने स्वयं के विशेष ध्यान दिया जाता है। डेटा संपादन ग्रिड के लिए यह ठीक है, लेकिन मैं एक खुले संवाद की तरह कुछ और बनाने की कोशिश कर रहा हूं जो सूची में प्रत्येक आइटम के लिए गुण दिखाता है, इसलिए ...केवल सिल्वरलाइट डेटा ग्रिड

क्या एक (केवल पढ़ने के लिए) डेटाग्रिड को कॉन्फ़िगर करना संभव है कि उपयोगकर्ता केवल व्यक्तिगत पंक्तियों पर नहीं, संपूर्ण पंक्तियों का चयन या ध्यान केंद्रित कर सकता है।

यदि यह संभव नहीं है, तो केवल पहला तत्व चुनने योग्य बनाने का एक शानदार तरीका है - उदाहरण के लिए मानक विंडोज ओपन डायलॉग में, यदि आप विवरण दृश्य में बदलते हैं तो प्रत्येक पंक्ति के लिए कई कॉलम होते हैं (फ़ाइल नाम, निर्मित तिथि , आकार, आदि), लेकिन आप केवल फ़ाइल नाम कॉलम में आइटम को हाइलाइट कर सकते हैं।

उत्तर

8

यहाँ मेरी (लंगड़ा) संस्करण है जो चयनित पंक्ति और वर्तमान पंक्ति पर ग्रे रंग की पृष्ठभूमि पर एक काले रंग की पृष्ठभूमि कहते है। मुझे शैलियों को ओवरराइट करना पड़ा क्योंकि मैं व्यक्तिगत रूप से कोशिकाओं को चित्रित कर रहा था और चयनित पंक्ति छिपी हुई थी।

 <local:DataGrid.RowStyle> 
      <Style TargetType="local:DataGridRow"> 
       <Setter Property="IsTabStop" Value="False" /> 
       <Setter Property="Template"> 
        <Setter.Value> 
         <ControlTemplate TargetType="local:DataGridRow"> 
          <localprimitives:DataGridFrozenGrid Name="Root"> 
           <vsm:VisualStateManager.VisualStateGroups> 
            <vsm:VisualStateGroup x:Name="CommonStates"> 
             <vsm:VisualStateGroup.Transitions> 
              <vsm:VisualTransition GeneratedDuration="0" /> 
             </vsm:VisualStateGroup.Transitions> 
             <vsm:VisualState x:Name="Normal" /> 
             <vsm:VisualState x:Name="Normal AlternatingRow"> 
              <Storyboard> 
               <DoubleAnimation Storyboard.TargetName="BackgroundRectangle" Storyboard.TargetProperty="Opacity" Duration="0" To="0"/> 
              </Storyboard> 
             </vsm:VisualState> 
             <vsm:VisualState x:Name="MouseOver"> 
              <Storyboard> 
               <DoubleAnimation Storyboard.TargetName="BackgroundRectangle" Storyboard.TargetProperty="Opacity" Duration="0" To=".5"/> 
              </Storyboard> 
             </vsm:VisualState> 
             <vsm:VisualState x:Name="Normal Selected"> 
              <Storyboard> 
               <DoubleAnimation Storyboard.TargetName="BackgroundRectangleSelected" Storyboard.TargetProperty="Opacity" Duration="0" To="1" /> 
              </Storyboard> 
             </vsm:VisualState> 
             <vsm:VisualState x:Name="MouseOver Selected"> 
              <Storyboard> 
               <DoubleAnimation Storyboard.TargetName="BackgroundRectangleSelected" Storyboard.TargetProperty="Opacity" Duration="0" To="1"/> 
              </Storyboard> 
             </vsm:VisualState> 
             <vsm:VisualState x:Name="Unfocused Selected"> 
              <Storyboard> 
               <DoubleAnimation Storyboard.TargetName="BackgroundRectangleSelected" Storyboard.TargetProperty="Opacity" Duration="0" To="1"/> 
               <ColorAnimationUsingKeyFrames BeginTime="0" Duration="0" Storyboard.TargetName="BackgroundRectangleSelected" Storyboard.TargetProperty="(Shape.Fill).(SolidColorBrush.Color)"> 
                <SplineColorKeyFrame KeyTime="0" Value="Black"/> 
               </ColorAnimationUsingKeyFrames> 
              </Storyboard> 
             </vsm:VisualState> 
            </vsm:VisualStateGroup> 
           </vsm:VisualStateManager.VisualStateGroups> 
           <Grid.RowDefinitions> 
            <RowDefinition Height="*"/> 
            <RowDefinition Height="Auto"/> 
            <RowDefinition Height="Auto"/> 
           </Grid.RowDefinitions> 
           <Grid.ColumnDefinitions> 
            <ColumnDefinition Width="Auto" /> 
            <ColumnDefinition Width="*" /> 
           </Grid.ColumnDefinitions> 

           <Grid.Resources> 
            <Storyboard x:Key="DetailsVisibleTransition"> 
             <DoubleAnimation Storyboard.TargetName="DetailsPresenter" Storyboard.TargetProperty="ContentHeight" Duration="00:00:0.1" /> 
            </Storyboard> 
           </Grid.Resources> 

           <Rectangle x:Name="BackgroundRectangle" Grid.RowSpan="2" Grid.ColumnSpan="2" Opacity="0" Fill="#FFBADDE9"/> 
           <Rectangle x:Name="BackgroundRectangleSelected" Grid.RowSpan="2" Grid.ColumnSpan="2" Opacity="0" Fill="Black"/> 

           <localprimitives:DataGridRowHeader Grid.RowSpan="3" Name="RowHeader" localprimitives:DataGridFrozenGrid.IsFrozen="True" /> 
           <localprimitives:DataGridCellsPresenter Margin="2" Grid.Column="1" Name="CellsPresenter" localprimitives:DataGridFrozenGrid.IsFrozen="True" /> 
           <localprimitives:DataGridDetailsPresenter Grid.Row="1" Grid.Column="1" Name="DetailsPresenter" /> 
           <Rectangle Grid.Row="2" Grid.Column="1" Name="BottomGridLine" HorizontalAlignment="Stretch" Height="1" /> 
          </localprimitives:DataGridFrozenGrid> 
         </ControlTemplate> 
        </Setter.Value> 
       </Setter> 
      </Style> 
     </local:DataGrid.RowStyle> 
1

आप इन नमूनों की तरह एक शैली में बना सकते हैं पर प्रकाश डाला और संरेखित मैं करने के लिए:

<!-- Right Aligned Cell --> 
    <Style x:Key="RightAlignedCell" TargetType="{x:Type dg:DataGridCell}"> 
     <Setter Property="Template"> 
      <Setter.Value> 
       <ControlTemplate TargetType="{x:Type dg:DataGridCell}"> 
        <Grid Background="{TemplateBinding Background}"> 
         <ContentPresenter HorizontalAlignment="Right" VerticalAlignment="Center"/> 
        </Grid> 
       </ControlTemplate> 
      </Setter.Value> 
     </Setter> 
     <Style.Triggers> 
      <Trigger Property="dg:DataGridCell.IsSelected" Value="True"> 
       <Setter Property="Background" Value="#356815" /> 
       <Setter Property="Foreground" Value="#e2fce2" /> 
      </Trigger> 
     </Style.Triggers> 
    </Style> 

    <!-- Center Aligned Cell --> 
    <Style x:Key="CenterAlignedCell" TargetType="{x:Type dg:DataGridCell}"> 
     <Setter Property="Template"> 
      <Setter.Value> 
       <ControlTemplate TargetType="{x:Type dg:DataGridCell}"> 
        <Grid Background="{TemplateBinding Background}"> 
         <ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/> 
        </Grid> 
       </ControlTemplate> 
      </Setter.Value> 
     </Setter> 
     <Style.Triggers> 
      <Trigger Property="dg:DataGridCell.IsSelected" Value="True"> 
       <Setter Property="Background" Value="#356815" /> 
       <Setter Property="Foreground" Value="#e2fce2" /> 
      </Trigger> 
     </Style.Triggers> 
    </Style> 

बाद में डाल:

बस डेटा ग्रिड उदाहरण आप के लिए चिपकाया कोड जोड़

<dg:DataGrid x:Name="dg" AutoGenerateColumns="False" 
      xmlns:my="http://schemas.microsoft.com/wpf/2008/toolkit" ItemsSource="{Binding}" 
      SelectionMode="Single" ...> 
    <dg:DataGridTextColumn Header="Total Amount" Width="110" CellStyle="{StaticResource RightAlignedCell}" 
            Binding="{Binding Total,StringFormat={}\{0:N0\}}" IsReadOnly="True"/> 
    <dg:DataGridTextColumn Header="Enter Date" Width="110" CellStyle="{StaticResource CenterAlignedCell}" 
            Binding="{Binding EnterDate,StringFormat={}\{0:dd/MM/yyyy\}}" IsReadOnly="True"/> 

....

मैं इस जो कोई कैसे WPF डेटा ग्रिड में एक पूर्ण पंक्ति हाइलाइट करने के भटक रहा है के लिए काम करता है उम्मीद है।

+0

आपके सुझाव से काम करता है, लेकिन मैं एक सवाल मिल गया। मैंने DataGridCell के लिए एक सामान्य ट्रिगर परिभाषित किया है (उदाहरण के लिए यदि यह पढ़ा गया हो तो एक अलग पृष्ठभूमि सेट करें)। बहरहाल, यह सामान्य ट्रिगर काम करने के लिए अगर मैं चलाता बिना अपने RightAlignedCell शैली लागू नहीं लगता है। अपनी शैली में ट्रिगर्स जोड़ना (जैसा आपने यहां किया था) ठीक काम करता है। क्या आप व्यख्या कर सकते हैं? – newman