2016-10-07 93 views
0

データグリッドにDataGridComboBoxColumnというデータグリッドがあります。WPF DataGridComboBoxColumnキーの編集

入力するだけで編集モードに入ることができます。
これはDataGridTextColumnのデフォルトの動作で、この列タイプだけを編集できるようにするにはF2キーを押してください。

F2を押す必要なしにDataGridComboBoxColumn編集モードに入る方法を教えてください。 Key Pressには理想的ですが、フォーカスを合わせて編集モードに入っても問題ありません。データグリッドの基本的な機能を取り戻す受け入れ答えに

ソリューション 変更:

void Cell_PreviewKeyDown(object sender, KeyEventArgs e) 
    { 
     if(e.Key == Key.Enter || e.Key == Key.Tab) 
     { 
      dgBins.CommitEdit(); 
      dgBins.SelectedIndex += 1; 
     }else if(e.Key.ToString().Length == 1 
      || (e.Key.ToString().StartsWith("D") && e.Key.ToString().Length == 2) 
      || e.Key.ToString().StartsWith("NumPad") 
      || e.Key == Key.Delete 
      || e.Key == Key.Back) 
     { 
      if (e.OriginalSource is DataGridCell) 
      { 
       DataGridCell cell = (sender as DataGridCell); 
       Control elem = FindChild<Control>(cell, null); 
       elem.Focus(); 
      } 
     } 
    } 

答えて

1
<DataGrid.CellStyle> 
     <Style TargetType="DataGridCell"> 
      <EventSetter Event="PreviewKeyDown" Handler="Cell_PreviewKeyDown"/> 
      <EventSetter Event="GotFocus" Handler="Cell_GotFocus"/> 
     </Style> 
    </DataGrid.CellStyle> 

ハンドラ:

void Cell_PreviewKeyDown(object sender, KeyEventArgs e) 
{ 
    if (e.OriginalSource is DataGridCell) 
    { 
     DataGridCell cell = (sender as DataGridCell); 
     Control elem = FindChild<Control>(cell, null); 
     elem.Focus(); 
    } 
} 

void Cell_GotFocus(object sender, RoutedEventArgs e) 
{ 
    DataGridCell cell = (sender as DataGridCell); 
    cell.IsEditing = true; 
} 

ヘルパー:

public static T FindChild<T>(DependencyObject parent, string childName) 
     where T : DependencyObject 
{ 
    // Confirm parent and childName are valid. 
    if (parent == null) return null; 

    T foundChild = null; 

    int childrenCount = VisualTreeHelper.GetChildrenCount(parent); 
    for (int i = 0; i < childrenCount; i++) 
    { 
     var child = VisualTreeHelper.GetChild(parent, i); 
     // If the child is not of the request child type child 
     T childType = child as T; 
     if (childType == null) 
     { 
      // recursively drill down the tree 
      foundChild = FindChild<T>(child, childName); 

      // If the child is found, break so we do not overwrite the found child. 
      if (foundChild != null) break; 
     } 
     else if (!string.IsNullOrEmpty(childName)) 
     { 
      var frameworkElement = child as FrameworkElement; 
      // If the child's name is set for search 
      if (frameworkElement != null && frameworkElement.Name == childName) 
      { 
       // if the child's name is of the request name 
       foundChild = (T)child; 
       break; 
      } 
     } 
     else 
     { 
      // child element found. 
      foundChild = (T)child; 
      break; 
     } 
    } 

    return foundChild; 
} 

これはあなたの問題を解決した場合。

+0

ほとんどの場合、入力キー、エスケープキー、タブキーを無視するように修正する必要がありました。また、ユーザーは次の行に移動するためにEnterキーを2回押す必要があります。停止する方法を理解しようとしています。 – MrZander

+0

@MrZanderこれは別の質問の候補です。ですから、別に質問するようにお願いします。そして、この答えがあなたの現在の質問に応じてそれに印を付けるなら。 – AnjumSKhan

+0

これは、これが編集モードに入るのを引き起こしますが、データグリッドの他のすべての機能を破壊します。理想よりも劣るとにかく、問題を修正した修正内容で質問を更新しました。 – MrZander

1

あなたはSelectedCellsChangedイベントを使用しようとすることができます。それは焦点の変更に作用する。

他の列でその動作を行わない場合は、SelectionUnit="Cell"DataGridの場合はe.AddedCells[0].Columnプロパティを確認できます。

private void dgTest_SelectedCellsChanged(object sender, SelectedCellsChangedEventArgs e) 
{ 
    (sender as DataGrid).BeginEdit(); 
} 
関連する問題