web-dev-qa-db-ja.com

NAMEDコンテンツを使用してWPF UserControlを作成する方法

私は、同じ方法で常に再利用されるコマンドとロジックが添付された一連のコントロールを持っています。すべての一般的なコントロールとロジックを保持するユーザーコントロールを作成することにしました。

ただし、名前を付けられるコンテンツを保持できるようにするコントロールも必要です。私は次を試しました:

<UserControl.ContentTemplate>
    <DataTemplate>
        <Button>a reused button</Button>
        <ContentPresenter Content="{TemplateBinding Content}"/>
        <Button>a reused button</Button>
    </DataTemplate>
</UserControl.ContentTemplate>

ただし、ユーザーコントロール内に配置されたコンテンツには名前を付けることができないようです。たとえば、次の方法でコントロールを使用する場合:

<lib:UserControl1>
     <Button Name="buttonName">content</Button>
</lib:UserControl1>

次のエラーが表示されます。

要素「ボタン」に名前属性値「ボタン名」を設定できません。 「ボタン」は、要素「UserControl1」のスコープの下にあり、別のスコープで定義されたときにすでに名前が登録されています。

ButtonNameを削除するとコンパイルされますが、コンテンツに名前を付ける必要があります。どうすればこれを達成できますか?

87
Ryan

XAMLが使用されている場合、これは不可能のようです。必要なすべてのコントロールを実際に持っている場合、カスタムコントロールは過剰に思えますが、ほんの少しのロジックでそれらをグループ化し、名前付きコンテンツを許可するだけです。

JDのブログ のソリューションは、mackenirが示唆するように、最良の妥協案があるようです。 JDのソリューションを拡張して、XAMLでコントロールを定義できるようにする方法は次のとおりです。

    protected override void OnInitialized(EventArgs e)
    {
        base.OnInitialized(e);

        var grid = new Grid();
        var content = new ContentPresenter
                          {
                              Content = Content
                          };

        var userControl = new UserControlDefinedInXAML();
        userControl.aStackPanel.Children.Add(content);

        grid.Children.Add(userControl);
        Content = grid;           
    }

上記の私の例では、XAMLを使用する通常のユーザーコントロールのように定義されるUserControlDefinedInXAMLというユーザーコントロールを作成しました。 UserControlDefinedInXAMLには、名前付きコンテンツを表示するaStackPanelというStackPanelがあります。

17
Ryan

答えは、UserControlを使用しないことです。

ContentControlを拡張するクラスを作成します

public class MyFunkyControl : ContentControl
{
    public static readonly DependencyProperty HeadingProperty =
        DependencyProperty.Register("Heading", typeof(string),
        typeof(HeadingContainer), new PropertyMetadata(HeadingChanged));

    private static void HeadingChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        ((HeadingContainer) d).Heading = e.NewValue as string;
    }

    public string Heading { get; set; }
}

次に、スタイルを使用して内容を指定します

<Style TargetType="control:MyFunkyControl">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="control:MyFunkyContainer">
                <Grid>
                    <ContentControl Content="{TemplateBinding Content}"/>
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

そして最後に-それを使用する

<control:MyFunkyControl Heading="Some heading!">            
    <Label Name="WithAName">Some cool content</Label>
</control:MyFunkyControl>
40
Sybrand

C#から要素を参照する必要がある場合があります。ユースケースに応じて、x:Uidの代わりにx:Nameおよび WPFのUidでオブジェクトを取得 のようなUid Finderメソッドを呼び出して要素にアクセスします。

3
Dani

私が使用した別の方法は、NameイベントでLoadedプロパティを設定することです。

私の場合、コードビハインドで作成したくないかなり複雑なコントロールがあり、特定の動作のために特定の名前を持つオプションのコントロールを探しましたが、名前をDataTemplate私はLoadedイベントでもそれができると考えました。

private void Button_Loaded(object sender, RoutedEventArgs e)
{
    Button b = sender as Button;
    b.Name = "buttonName";
}
3
Rachel

このヘルパーを使用して、ユーザーコントロール内で名前を設定できます。

using System;
using System.Reflection;
using System.Windows;
using System.Windows.Media;
namespace UI.Helpers
{
    public class UserControlNameHelper
    {
        public static string GetName(DependencyObject d)
        {
            return (string)d.GetValue(UserControlNameHelper.NameProperty);
        }

        public static void SetName(DependencyObject d, string val)
        {
            d.SetValue(UserControlNameHelper.NameProperty, val);
        }

        public static readonly DependencyProperty NameProperty =
            DependencyProperty.RegisterAttached("Name",
                typeof(string),
                typeof(UserControlNameHelper),
                new FrameworkPropertyMetadata("",
                    FrameworkPropertyMetadataOptions.None,
                    (d, e) =>
                    {
                        if (!string.IsNullOrEmpty((string)e.NewValue))
                        {
                            string[] names = e.NewValue.ToString().Split(new char[] { ',' });

                            if (d is FrameworkElement)
                            {
                                ((FrameworkElement)d).Name = names[0];
                                Type t = Type.GetType(names[1]);
                                if (t == null)
                                    return;
                                var parent = FindVisualParent(d, t);
                                if (parent == null)
                                    return;
                                var p = parent.GetType().GetProperty(names[0], BindingFlags.Instance | BindingFlags.Public | BindingFlags.SetProperty);
                                p.SetValue(parent, d, null);
                            }
                        }
                    }));

        public static DependencyObject FindVisualParent(DependencyObject child, Type t)
        {
            // get parent item
            DependencyObject parentObject = VisualTreeHelper.GetParent(child);

            // we’ve reached the end of the tree
            if (parentObject == null)
            {
                var p = ((FrameworkElement)child).Parent;
                if (p == null)
                    return null;
                parentObject = p;
            }

            // check if the parent matches the type we’re looking for
            DependencyObject parent = parentObject.GetType() == t ? parentObject : null;
            if (parent != null)
            {
                return parent;
            }
            else
            {
                // use recursion to proceed with next level
                return FindVisualParent(parentObject, t);
            }
        }
    }
}

また、プロパティで制御するウィンドウまたは制御コードビハインドセット:

 public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();

    }

    public Button BtnOK { get; set; }
}

あなたのウィンドウxaml:

    <Window x:Class="user_Control_Name.MainWindow"
            xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
            xmlns:test="clr-namespace:user_Control_Name"
            xmlns:helper="clr-namespace:UI.Helpers" x:Name="mainWindow"
            Title="MainWindow" Height="350" Width="525">
        <Grid>
            <test:TestUserControl>
                <Button helper:UserControlNameHelper.Name="BtnOK,user_Control_Name.MainWindow"/>
            </test:TestUserControl>
            <TextBlock Text="{Binding ElementName=mainWindow,Path=BtnOK.Name}"/>
        </Grid>
    </Window>

UserControlNameHelperは、ControlをPropertyに設定するためのコントロール名とクラス名を取得します。

1
Ali Yousefi
<Popup>
    <TextBox Loaded="BlahTextBox_Loaded" />
</Popup>

コードビハインド:

public TextBox BlahTextBox { get; set; }
private void BlahTextBox_Loaded(object sender, RoutedEventArgs e)
{
    BlahTextBox = sender as TextBox;
}

本当の解決策は、Microsoftがこの問題を修正することであり、ビジュアルツリーなどが壊れている他のすべてのものも同様です。

0
Ed Plunkett

さらに別の回避策:要素をRelativeSourceとして参照します。

0
voccoeisuoi

取得する必要がある各要素に対して追加のプロパティを作成することを選択しました。

    public FrameworkElement First
    {
        get
        {
            if (Controls.Count > 0)
            {
                return Controls[0];
            }
            return null;
        }
    }

これにより、XAMLの子要素にアクセスできます。

<TextBlock Text="{Binding First.SelectedItem, ElementName=Taxcode}"/>
0
aliceraunsbaek

名前付きコントロールの束を配置するときにTabControlを使用すると、同じ問題が発生しました。

私の回避策は、タブページに表示されるすべてのコントロールを含むコントロールテンプレートを使用することでした。テンプレート内では、Nameプロパティを使用でき、少なくとも同じテンプレート内で、他のコントロールから名前付きコントロールのプロパティにデータバインドすることもできます。

TabItemコントロールのコンテンツとして、単純なコントロールを使用し、それに応じてControlTemplateを設定します。

<Control Template="{StaticResource MyControlTemplate}"/>

コードビハインドからテンプレート内の名前付きコントロールにアクセスするには、ビジュアルツリーを使用する必要があります。

0
David Wellna