2017-09-14 73 views
0

我有一個數據網格,其使用DataTemplateSelector無論是作爲文本框,組合框或滑塊以顯示不同的可編輯值編輯細胞。問題是我可以選中這些單元格,但無法用鍵盤編輯它們。我曾想象過,一旦細胞聚焦,我就可以編輯內部的物品。Xceed數據網格:用鍵盤導航

舉例:Tab在文本框細胞>開始鍵入 舉例:Tab鍵滑蓋細胞>現在的工作重點>使用箭頭鍵來編輯

像現在我必須用鼠標點擊開始編輯。沒有辦法只用鍵盤開始編輯。

這裏是我的代碼:

<UserControl.Resources> 

    <!--#region DataTemplateSelector--> 
    <local:SettingsDataTemplateSelector x:Key="SettingsDataTemplateSelector" /> 

    <DataTemplate x:Key="TextboxDataTemplate"> 
     <xcdg:MaskedTextBox IsTabStop="True" Mask="{Binding EditMask}" Text="{Binding EditValue, IsAsync=False, Mode=TwoWay, UpdateSourceTrigger=LostFocus, ValidatesOnExceptions=True}"/> 
    </DataTemplate> 

    <DataTemplate x:Key="ComboDataTemplate"> 
     <ComboBox IsTabStop="True" ItemsSource="{Binding Path=SelectionValues}" 
            SelectedValuePath="Value" 
            SelectedValue="{Binding Path=SelectionValue, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" 
            DisplayMemberPath="ValueText"> 
     </ComboBox> 
    </DataTemplate> 

    <DataTemplate x:Key="SliderDataTemplate"> 
     <Slider IsTabStop="True" Value="{Binding EditSliderValue, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" 
        Minimum="{Binding MinRangeValue}" 
        Maximum="{Binding MaxRangeValue}" 
        VerticalAlignment="Bottom" 
        IsSnapToTickEnabled="True" 
        TickFrequency="1" 
        Margin="0,0,0,0"/> 
    </DataTemplate> 
    <!--#endregion--> 

    <xcdg:DataGridCollectionViewSource x:Key="Features" 
             Source ="{Binding Path=Demo.Features}" 
             AutoFilterMode="And" 
             AutoCreateDetailDescriptions="False" 
             AutoCreateItemProperties="False"> 
     <xcdg:DataGridCollectionViewSource.DetailDescriptions> 
      <xcdg:PropertyDetailDescription RelationName="Settings" AutoCreateDetailDescriptions="False" AutoCreateItemProperties="False"/> 
     </xcdg:DataGridCollectionViewSource.DetailDescriptions> 
    </xcdg:DataGridCollectionViewSource> 
</UserControl.Resources> 

<Grid> 
    <!--#region Xceed DataGrid--> 
    <xcdg:DataGridControl x:Name="datagrid" 
          ItemsSource="{Binding Source={StaticResource Features}}" 
          KeyUp="DatagridKeyUp" 
          AllowDetailToggle="True" 
          Margin="10" 
          NavigationBehavior="RowOrCell" 
          CellEditorDisplayConditions="RowIsBeingEdited, 
          MouseOverCell, MouseOverRow, RowIsCurrent, CellIsCurrent" 
          EditTriggers="BeginEditCommand, ClickOnCurrentCell, 
          SingleClick, CellIsCurrent, ActivationGesture, RowIsCurrent" 
          ItemScrollingBehavior="Immediate" 
          AutoCreateColumns="False"> 

     <xcdg:DataGridControl.Resources> 
      <Style TargetType="xcdg:TableViewScrollViewer"> 
       <Setter Property="HorizontalScrollBarVisibility" Value="Auto" /> 
       <Setter Property="VerticalScrollBarVisibility" Value="Auto" /> 
      </Style> 
     </xcdg:DataGridControl.Resources> 

     <xcdg:DataGridControl.View> 
      <xcdg:TableflowView UseDefaultHeadersFooters="False" ColumnStretchMode="Last"> 
       <xcdg:TableflowView.FixedHeaders> 
        <DataTemplate> 
         <xcdg:ColumnManagerRow /> 
        </DataTemplate> 
       </xcdg:TableflowView.FixedHeaders> 
      </xcdg:TableflowView> 
     </xcdg:DataGridControl.View> 

     <xcdg:DataGridControl.Columns> 
      <xcdg:Column FieldName="FeatureID" Title="FeatureID" ReadOnly="True" /> 
      <xcdg:Column FieldName="Name" Title="Feature name" ReadOnly="True" /> 
      <xcdg:Column FieldName="Description" Title="Description" ReadOnly="True" /> 
      <xcdg:Column FieldName=" "/> 
     </xcdg:DataGridControl.Columns> 

     <xcdg:DataGridControl.DetailConfigurations> 
      <xcdg:DetailConfiguration RelationName="Settings" Title=""> 
       <xcdg:DetailConfiguration.Columns> 
        <xcdg:Column FieldName="Name" Title="Name" ReadOnly="True"/> 
        <xcdg:Column FieldName="Description" Title="Description" ReadOnly="True"/> 
        <xcdg:Column FieldName="EditValues" Title="Edit Values" ReadOnly="True"/> 
        <xcdg:Column FieldName="EditValueVar" Title="Edit Value" Width="150" ReadOnly="False" 
           CellContentTemplateSelector="{StaticResource SettingsDataTemplateSelector}" 
           DisplayMemberBinding="{Binding}" /> 
        <xcdg:Column FieldName=" "/> 
       </xcdg:DetailConfiguration.Columns> 
      </xcdg:DetailConfiguration> 
     </xcdg:DataGridControl.DetailConfigurations> 
    </xcdg:DataGridControl> 
    <!--#endregion--> 
</Grid> 

任何幫助表示讚賞。

回答

0

我結束了使用Xceed的CellEditors。如果你想用鍵盤編輯,似乎沒有辦法繞過它們。

更改EditValueVar列如下:

    <xcdg:Column FieldName="EditValueVar" Title="Edit Value" Width="150" ReadOnly="False" 
          CellEditorSelector="{StaticResource SettingsCellEditorSelector}"/> 

注:刪除DisplayMemberBinding,因爲它可能會導致問題與動態數據

這裏是CellEditors我現在使用:

<xcdg:CellEditor x:Key="maskEditor"> 
    <xcdg:CellEditor.EditTemplate> 
     <DataTemplate> 
      <xcdg:MaskedTextBox Mask="{Binding EditMask}" 
           Text="{Binding Path=(xcdg:Cell.ParentCell).DataContext.EditValue, 
               RelativeSource={RelativeSource Self}, 
               IsAsync=False, Mode=TwoWay, UpdateSourceTrigger=LostFocus, ValidatesOnExceptions=True}" 
           Style="{StaticResource {x:Type xcdg:MaskedTextBox}}"/> 
      <!--Text="{Binding EditValueText, IsAsync=False, Mode=TwoWay, UpdateSourceTrigger=LostFocus, ValidatesOnExceptions=True}"/>--> 
     </DataTemplate> 
    </xcdg:CellEditor.EditTemplate> 
    <xcdg:CellEditor.ActivationGestures> 
     <xcdg:TextInputActivationGesture /> 
    </xcdg:CellEditor.ActivationGestures> 
</xcdg:CellEditor> 

<xcdg:CellEditor x:Key="comboEditor"> 
    <xcdg:CellEditor.EditTemplate> 
     <DataTemplate> 
      <ComboBox ItemsSource="{Binding Path=(xcdg:Cell.ParentCell).DataContext.SelectionValues, 
              RelativeSource={RelativeSource Self}, UpdateSourceTrigger=PropertyChanged}" 
         SelectedValuePath="Value" 
         SelectedValue="{Binding Path=(xcdg:Cell.ParentCell).DataContext.SelectionValue, 
               RelativeSource={RelativeSource Self}, 
               UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" 
         DisplayMemberPath="ValueText" 
         Style="{StaticResource {x:Type ComboBox}}" 
         ItemContainerStyle="{StaticResource {x:Type ComboBoxItem}}"/> 
     </DataTemplate> 
    </xcdg:CellEditor.EditTemplate> 
    <xcdg:CellEditor.ActivationGestures> 
     <xcdg:KeyActivationGesture SystemKey="Down" 
            Modifiers="Alt" /> 
     <xcdg:KeyActivationGesture Key="Up" 
            Modifiers="Alt" /> 
     <xcdg:KeyActivationGesture Key="F4" /> 
     <xcdg:KeyActivationGesture Key="Space" /> 
    </xcdg:CellEditor.ActivationGestures> 
</xcdg:CellEditor> 

<xcdg:CellEditor x:Key="sliderEditor"> 
    <xcdg:CellEditor.EditTemplate> 
     <DataTemplate> 
      <Slider Value="{Binding Path=(xcdg:Cell.ParentCell).DataContext.EditSliderValue, 
          RelativeSource={RelativeSource Self}, 
          Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" 
        Minimum="{Binding Path=(xcdg:Cell.ParentCell).DataContext.MinRangeValue, RelativeSource={RelativeSource Self}}" 
        Maximum="{Binding Path=(xcdg:Cell.ParentCell).DataContext.MaxRangeValue, RelativeSource={RelativeSource Self}}" 
        Style="{StaticResource {x:Type Slider}}" 
        VerticalAlignment="Bottom" 
        IsSnapToTickEnabled="True" 
        TickFrequency="1" 
        Margin="0,0,0,0"/> 
     </DataTemplate> 
    </xcdg:CellEditor.EditTemplate> 
    <xcdg:CellEditor.ActivationGestures> 
     <xcdg:KeyActivationGesture SystemKey="Right" 
           Modifiers="Alt" /> 
     <xcdg:KeyActivationGesture Key="Left" 
           Modifiers="Alt" /> 
     <xcdg:KeyActivationGesture Key="F4" /> 
     <xcdg:KeyActivationGesture Key="Space" /> 
    </xcdg:CellEditor.ActivationGestures> 
</xcdg:CellEditor> 

您可能會注意到奇怪(xcdg:Cell.ParentCell) -stuff事情,是的,這是其醜無比,但這是樂git的做法。你可能有更好的運氣只是用xcdg:CellEditorBinding代替。

xcdg:CellEditorBinding是結合這樣的等價物:{Binding Path=(xcdg:Cell.ParentCell).Content, Mode=TwoWays, RelativeSource={RelativeSource Self}, UpdateSourceTrigger=PropertyChanged}

我在內容之前添加了.DataContext,這是因爲我的數據的結構。

希望這可以幫助別人!