こんにちは私はitemscontrolのデータテンプレート内にいくつかの単一のテキストボックスを持っています。 itemcontrolsを監視可能なコレクションにバインドすると、2つのテキストボックスが表示されます。ただし、IDを使用して各テキストボックスを個別に検索する各テキストボックスに基づいて、いくつかの操作を行う必要があります。
誰かがWPFのitemscontrolを使用してコントロールを見つける方法を手伝ってもらえますか?.
ItemContainerGeneratorを使用すると、アイテム用に生成されたコンテナーを取得し、ビジュアルツリーを下にトラバースしてTextBoxを見つけることができます。 ItemsControlの場合、ContentPresenterになりますが、ListBoxはListBoxItem、ListView、ListViewItemなどを返します。
ContentPresenter cp = itemsControl.ItemContainerGenerator.ContainerFromItem(item) as ContentPresenter;
TextBox tb = FindVisualChild<TextBox>(cp);
if (tb != null)
{
// do something with tb
}
public static T FindVisualChild<T>(DependencyObject depObj) where T : DependencyObject
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
return (T)child;
}
T childItem = FindVisualChild<T>(child);
if (childItem != null) return childItem;
}
}
return null;
}
必要に応じて、インデックスでコンテナを取得することもできます。
itemsControl.ItemContainerGenerator.ContainerFromIndex(0);
ブライスに感謝します。上矢印をチェックしようとしましたが、評価が低すぎると表示されます。ごめんなさい!
必要なものであり、他の誰かが役立つと思ったので、指定されたタイプのすべての子のすべてのリストを返すようにコードを修正しました。
もう一度ブライスに感謝します、本当に役に立ちました-評価のことについて申し訳ありません!
public static List<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject
{
List<T> list = new List<T>();
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
list.Add((T)child);
}
List<T> childItems = FindVisualChildren<T>(child);
if (childItems != null && childItems.Count() > 0)
{
foreach (var item in childItems)
{
list.Add(item);
}
}
}
}
return list;
}
VisualTreeHelper を使用してみてください。 ItemsControl自体のプロパティでは、バインドされたデータのみを取得でき、データの視覚化に使用されるテンプレートインスタンスは取得できません。一方、VisualTreeHelperでは、WPFがレンダリングしたビジュアルツリーを参照できます。
親ItemControlの視覚的な子を(再帰的に)反復する場合、画面に表示されているテキストボックスを見つけるのに問題はありません。
もう一つの例:
private void DataGridBank_KeyUp(object sender, System.Windows.Input.KeyEventArgs e)
{
try
{
switch (e.Key)
{
case Key.Down:
if ((DataGridBank.SelectedIndex + 1) <= DataGridBank.Items.Count)
{
DataGridBank.SelectedIndex = DataGridBank.SelectedIndex + 1;
FocusCell();
}
break;
case Key.Up:
if ((DataGridBank.SelectedIndex - 1) >= 0)
{
DataGridBank.SelectedIndex = DataGridBank.SelectedIndex - 1;
FocusCell();
}
break;
case Key.Enter:
case Key.Tab:
FocusCell();
break;
}
}
catch (Exception ex)
{
}
}
private void DataGridBank_Loaded(object sender, RoutedEventArgs e)
{
try
{
if (DataGridBank.Items.Count > 0)
{
DataGridBank.SelectedIndex = 0;
FocusCell();
}
}catch(Exception ex)
{
}
}
private void FocusCell()
{
var selectedRow = (DataGridRow)DataGridBank.ItemContainerGenerator.ContainerFromItem(DataGridBank.SelectedItem);
var textImport = FindVisualChild<TextBox>(selectedRow);
textImport.Focus();
textImport.SelectAll();
}
public static T FindVisualChild<T>(DependencyObject depObj) where T : DependencyObject
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
return (T)child;
}
T childItem = FindVisualChild<T>(child);
if (childItem != null) return childItem;
}
}
return null;
}
データグリッドとデータテンプレートを含むテンプレート列がある場合は、次のコードサンプルを使用できます
<DataGridTemplateColumn x:Name="photoPathColumn" Header="{x:Static resx:FrmResource.Photo}">
<DataGridTemplateColumn.CellEditingTemplate x:Uid="keyelm">
<DataTemplate x:Name="dodo">
<StackPanel Orientation="Horizontal" Height="Auto">
<TextBlock x:Name="photo" x:Uid="imageFile" Text="{Binding Path=PhotoPath}" />
<Button x:Name="Browse" Content="..." Click="Browse_Click" />
</StackPanel>
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
photoPathColumn.CellEditingTemplate.FindName("photo",photoPathColumn.GetCellContent(CustomersDataGrid.CurrentItem))