web-dev-qa-db-ja.com

ActualWidthへのバインドが機能しない

Silverlight 3.0アプリケーションで、キャンバスに長方形を作成し、それをキャンバスの幅全体に拡大しようとしています。親コンテナのActualWidthプロパティにバインドしてこれを実行しようとしましたが(以下のサンプルを参照)、バインドエラーは表示されませんが、値はバインドされていません。長方形の幅がゼロであるため、長方形は表示されません。さらに、私の長方形を含むキャンバスのActualWidthにバインドしようとしましたが、これは違いがありませんでした。

私は Microsoft Connectに記録されたこのバグを見つけます しましたが、回避策はリストされていません。

誰かがこの問題を解決することができましたか、それとも彼らは解決策を指摘できますか?

編集:元のコードサンプルは、私が達成しようとしていることを正確ではなく、より明確にするために更新されました。

<UserControl>
    <Border BorderBrush="White"
            BorderThickness="1"
            CornerRadius="4"
            HorizontalAlignment="Center">
        <Grid x:Name="GridContainer">
            <Rectangle Fill="Aqua"
                       Width="150"
                       Height="400" />
            <Canvas>
                <Rectangle Width="{Binding Path=ActualWidth, ElementName=GridContainer}"
                           Height="30"
                           Fill="Red" />
            </Canvas>

            <StackPanel>
                <!-- other elements here -->
            </StackPanel>
        </Grid>
    </Border>
</UserControl>
24
Richard McGuire

ActualWidthプロパティにデータバインドする必要があることを何をしようとしていますか?これはSilverlightの既知の問題であり、簡単な回避策はありません。

実行できることの1つは、実際に長方形の幅を設定する必要がなく、適切なサイズに拡大できるようにビジュアルツリーを設定することです。したがって、上記の例では、Canvasを削除して(またはCanvasを他のパネルに変更して)RectangleHorizontalAlignmentStretchに設定したままにすると、すべてが使用されます。使用可能な幅(実質的にはグリッドの幅)。

ただし、特定のケースではこれが不可能な場合があり、データバインディングを設定する必要がある場合があります。これが直接不可能であることはすでに確立されていますが、プロキシオブジェクトを使用して、必要なバインディングを設定できます。このコードを検討してください:

public class ActualSizePropertyProxy : FrameworkElement, INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    public FrameworkElement Element
    {
        get { return (FrameworkElement)GetValue(ElementProperty); }
        set { SetValue(ElementProperty, value); }
    }

    public double ActualHeightValue
    {
        get{ return Element == null? 0: Element.ActualHeight; }
    }

    public double ActualWidthValue
    {
        get { return Element == null ? 0 : Element.ActualWidth; }
    }

    public static readonly DependencyProperty ElementProperty =
        DependencyProperty.Register("Element", typeof(FrameworkElement), typeof(ActualSizePropertyProxy), 
                                    new PropertyMetadata(null,OnElementPropertyChanged));

    private static void OnElementPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        ((ActualSizePropertyProxy)d).OnElementChanged(e);
    }

    private void OnElementChanged(DependencyPropertyChangedEventArgs e)
    {
        FrameworkElement oldElement = (FrameworkElement)e.OldValue;
        FrameworkElement newElement = (FrameworkElement)e.NewValue;

        newElement.SizeChanged += new SizeChangedEventHandler(Element_SizeChanged);
        if (oldElement != null)
        {
            oldElement.SizeChanged -= new SizeChangedEventHandler(Element_SizeChanged);
        }
        NotifyPropChange();
    }

    private void Element_SizeChanged(object sender, SizeChangedEventArgs e)
    {
        NotifyPropChange();
    }

    private void NotifyPropChange()
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs("ActualWidthValue"));
            PropertyChanged(this, new PropertyChangedEventArgs("ActualHeightValue"));
        }
    }
}

これをxamlで次のように使用できます。

<Grid x:Name="LayoutRoot">
    <Grid.Resources>
        <c:ActualSizePropertyProxy Element="{Binding ElementName=LayoutRoot}" x:Name="proxy" />
    </Grid.Resources>
    <TextBlock x:Name="tb1" Text="{Binding ActualWidthValue, ElementName=proxy}"  />
</Grid>

したがって、TextBlock.TextをプロキシオブジェクトのActualWidthValueにバインドしています。プロキシオブジェクトは、別のバインディングによって提供される要素のActualWidthを提供します。

これは問題の簡単な解決策ではありませんが、ActualWidthにデータバインドする方法について私が考えることができる最善の方法です。

シナリオをもう少し説明すると、もっと簡単な解決策を思いつくことができるかもしれません。 DataBindingはまったく必要ない場合があります。 SizeChangedイベントハンドラーのコードからプロパティを設定することは可能でしょうか?

31
KeithMahoney

添付プロパティのメカニズムを使用して、ActualHeightおよびActualWidthを表し、SizeChangedイベントによって更新されるプロパティを定義できます。使い方は以下のようになります。

_<Grid local:SizeChange.IsEnabled="True" x:Name="grid1">...</Grid>

<TextBlock Text="{Binding ElementName=grid1,
                         Path=(local:SizeChange.ActualHeight)}"/>
_

技術的な詳細は次の場所にあります。

http://darutk-oboegaki.blogspot.com/2011/07/binding-actualheight-and-actualwidth.html

他のソリューションと比較したこのソリューションの利点は、ソリューションで定義された添付プロパティ(SizeChange.ActualHeightおよびSizeChange.ActualWidth)を、サブクラスを作成せずに任意のFrameworkElementに使用できることです。 このソリューションは再利用可能で侵襲性が低いです。


リンクが古くなった場合は、リンクに示されているSizeChangeクラスを次に示します。

_// Declare SizeChange class as a sub class of DependencyObject

// because we need to register attached properties.
public class SizeChange : DependencyObject
 {
     #region Attached property "IsEnabled"

    // The name of IsEnabled property.
    public const string IsEnabledPropertyName = "IsEnabled";

    // Register an attached property named "IsEnabled".
    // Note that OnIsEnabledChanged method is called when
    // the value of IsEnabled property is changed.
    public static readonly DependencyProperty IsEnabledProperty
         = DependencyProperty.RegisterAttached(
             IsEnabledPropertyName,
             typeof(bool),
             typeof(SizeChange),
             new PropertyMetadata(false, OnIsEnabledChanged));

    // Getter of IsEnabled property. The name of this method
    // should not be changed because the dependency system
    // uses it.
    public static bool GetIsEnabled(DependencyObject obj)
     {
         return (bool)obj.GetValue(IsEnabledProperty);
     }

    // Setter of IsEnabled property. The name of this method
    // should not be changed because the dependency system
    // uses it.
    public static void SetIsEnabled(DependencyObject obj, bool value)
     {
         obj.SetValue(IsEnabledProperty, value);
     }

     #endregion

     #region Attached property "ActualHeight"

    // The name of ActualHeight property.
    public const string ActualHeightPropertyName = "ActualHeight";

    // Register an attached property named "ActualHeight".
    // The value of this property is updated When SizeChanged
    // event is raised.
    public static readonly DependencyProperty ActualHeightProperty
         = DependencyProperty.RegisterAttached(
             ActualHeightPropertyName,
             typeof(double),
             typeof(SizeChange),
             null);

    // Getter of ActualHeight property. The name of this method
    // should not be changed because the dependency system
    // uses it.
    public static double GetActualHeight(DependencyObject obj)
     {
         return (double)obj.GetValue(ActualHeightProperty);
     }

    // Setter of ActualHeight property. The name of this method
    // should not be changed because the dependency system
    // uses it.
    public static void SetActualHeight(DependencyObject obj, double value)
     {
         obj.SetValue(ActualHeightProperty, value);
     }

     #endregion

     #region Attached property "ActualWidth"

    // The name of ActualWidth property.
    public const string ActualWidthPropertyName = "ActualWidth";

    // Register an attached property named "ActualWidth".
    // The value of this property is updated When SizeChanged
    // event is raised.
    public static readonly DependencyProperty ActualWidthProperty
         = DependencyProperty.RegisterAttached(
             ActualWidthPropertyName,
             typeof(double),
             typeof(SizeChange),
             null);

    // Getter of ActualWidth property. The name of this method
    // should not be changed because the dependency system
    // uses it.
    public static double GetActualWidth(DependencyObject obj)
     {
         return (double)obj.GetValue(ActualWidthProperty);
     }

    // Setter of ActualWidth property. The name of this method
    // should not be changed because the dependency system
    // uses it.
    public static void SetActualWidth(DependencyObject obj, double value)
     {
         obj.SetValue(ActualWidthProperty, value);
     }

     #endregion

    // This method is called when the value of IsEnabled property
    // is changed. If the new value is true, an event handler is
    // added to SizeChanged event of the target element.
    private static void OnIsEnabledChanged(DependencyObject obj, DependencyPropertyChangedEventArgs args)
     {
        // The given object must be a FrameworkElement instance,
        // because we add an event handler to SizeChanged event
        // of it.
        var element = obj as FrameworkElement;

         if (element == null)
         {
            // The given object is not an instance of FrameworkElement,
            // meaning SizeChanged event is not available. So, nothing
            // can be done for the object.
            return;
         }

        // If IsEnabled=True
        if (args.NewValue != null && (bool)args.NewValue == true)
         {
             // Attach to the element.
             Attach(element);
         }
         else
         {
             // Detach from the element.
             Detach(element);
         }
     }

     private static void Attach(FrameworkElement element)
     {
        // Add an event handler to SizeChanged event of the element

        // to take action when actual size of the element changes.
        element.SizeChanged += HandleSizeChanged;
     }

     private static void Detach(FrameworkElement element)
     {
        // Remove the event handler from the element.
        element.SizeChanged -= HandleSizeChanged;
     }

    // An event handler invoked when SizeChanged event is raised.
    private static void HandleSizeChanged(object sender, SizeChangedEventArgs args)
     {
         var element = sender as FrameworkElement;

         if (element == null)
         {
             return;
         }

        // Get the new actual height and width.
        var width  = args.NewSize.Width;
         var height = args.NewSize.Height;

        // Update values of SizeChange.ActualHeight and

        // SizeChange.ActualWidth.
        SetActualWidth(element, width);
         SetActualHeight(element, height);
     }
 }
_
21
darutk

遅すぎるとは思いますが、この問題に取り組んでいます。私の解決策は、RealWidthと呼ばれる独自のDependencyPropertyを宣言し、SizeChangedイベントでその値を更新することです。次に、ActualWidthプロパティとは異なり、更新されるRealWidthにバインドできます。

public MyControl()
{
    InitializeComponent();
    SizeChanged += HandleSizeChanged;
}

public static DependencyProperty RealWidthProperty =
     DependencyProperty.Register("RealWidth", typeof (double),
     typeof (MyControl),
     new PropertyMetadata(500D));

public double RealWidth
{
    get { return (double) GetValue(RealWidthProperty); }
    set { SetValue(RealWidthProperty, value); }
}

private void HandleSizeChanged(object sender, SizeChangedEventArgs e)
{
    RealWidth = e.NewSize.Width;
}
8
Cameron Elliot

ContentPresenterを継承し、実際にはcan現在のサイズを提供する単純なパネルコントロールを作成してみませんか。

public class SizeNotifyPanel : ContentPresenter
{
    public static DependencyProperty SizeProperty =
        DependencyProperty.Register("Size",
                                    typeof (Size),
                                    typeof (SizeNotifyPanel),
                                    null);

    public Size Size
    {
        get { return (Size) GetValue(SizeProperty); }
        set { SetValue(SizeProperty, value); }
    }

    public SizeNotifyPanel()
    {
        SizeChanged += (s, e) => Size = e.NewSize;
    }
}

その後、実際のコンテンツのラッパーとして使用する必要があります。

<local:SizeNotifyPanel x:Name="Content">
    <TextBlock Text="{Binding Size.Height, ElementName=Content}" />
</local:SizeNotifyPanel>

チャームのように私のために働き、きれいに見えます。

5
Marcel Hoyer

@darutkの answer に基づいて、これは非常にエレガントに仕事をする添付のプロパティベースのソリューションです。

public static class SizeBindings
{
    public static readonly DependencyProperty ActualHeightProperty =
        DependencyProperty.RegisterAttached("ActualHeight", typeof (double), typeof (SizeBindings),
                                            new PropertyMetadata(0.0));

    public static readonly DependencyProperty ActualWidthProperty =
        DependencyProperty.RegisterAttached("ActualWidth", typeof (Double), typeof (SizeBindings),
                                            new PropertyMetadata(0.0));

    public static readonly DependencyProperty IsEnabledProperty =
        DependencyProperty.RegisterAttached("IsEnabled", typeof (bool), typeof (SizeBindings),
                                            new PropertyMetadata(false, HandlePropertyChanged));

    private static void HandlePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        var element = d as FrameworkElement;
        if (element == null)
        {
            return;
        }

        if ((bool) e.NewValue == false)
        {
            element.SizeChanged -= HandleSizeChanged;
        }
        else
        {
            element.SizeChanged += HandleSizeChanged;
        }
    }

    private static void HandleSizeChanged(object sender, SizeChangedEventArgs e)
    {
        var element = sender as FrameworkElement;

        SetActualHeight(element, e.NewSize.Height);
        SetActualWidth(element, e.NewSize.Width);
    }

    public static bool GetIsEnabled(DependencyObject obj)
    {
        return (bool)obj.GetValue(IsEnabledProperty);
    }

    public static void SetIsEnabled(DependencyObject obj, bool value)
    {
        obj.SetValue(IsEnabledProperty, value);
    }

    public static Double GetActualWidth(DependencyObject obj)
    {
        return (Double) obj.GetValue(ActualWidthProperty);
    }

    public static void SetActualWidth(DependencyObject obj, Double value)
    {
        obj.SetValue(ActualWidthProperty, value);
    }

    public static double GetActualHeight(DependencyObject obj)
    {
        return (double)obj.GetValue(ActualHeightProperty);
    }

    public static void SetActualHeight(DependencyObject obj, double value)
    {
        obj.SetValue(ActualHeightProperty, value);
    }
}

次のように使用します。

    <Grid>
        <Border x:Name="Border" behaviors:SizeBindings.IsEnabled="True"/>
        <Border MinWidth="{Binding (behaviors:SizeBindings.ActualWidth), ElementName=Border}"/>
    </Grid>
2
Samuel Jack

TestConverterを使用して公開する更新されたxamlをテストして、どの値が幅に渡され、それが機能しているかを確認しました(VS 2010 B2を使用しています)。 TestConverterを使用するには、Convertメソッドにブレークポイントを設定するだけです。

    public class TestConverter : IValueConverter
    {

        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            return value;
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            return value;
        }

    }

150の値が渡され、Rectangleの幅は150でした。

何か違うことを期待していましたか?

1
Bryant

KeithMahoney の回答に基づいて、UWPアプリで正常に動作し、問題を解決します。ただし、ActualWidthValueActualHeightValueの両方の初期値が設計時に提供されていないため、設計時にコントロールを表示できません。実行時には問題なく動作しますが、コントロールのレイアウトを設計するには不便です。少し変更を加えるだけで、この問題を解決できます。

  1. 両方のプロパティの彼のc#コードActualWidthValueActualHeightValueに、

    セットする {;}

    xAMLコードからダミー値を提供できるようにします。実行時間には使用できませんが、設計時間には使用できます。

  2. 彼のXAMLコードのResourcesの宣言で、c:ActualSizePropertyProxyActualWidthValueおよびActualHeightValueに適した値を指定します。

    ActualHeightValue = "800" ActualWidthValue = "400"

    次に、設計時に400x800のコントロールが表示されます。

0

これは余談ですが誰かがActualWidthにバインドするのに役立つかもしれない答えです。

私のプロセスは変更イベントを必要としませんでした、それは現在の状態の値の最終結果を必要としました。そこで、カスタムコントロール/プロセスにTargetという依存関係プロパティをFrameworkElementとして作成すると、コンシューマーxamlが問題の実際のオブジェクトにバインドされます。

計算の時間になると、コードは実際のオブジェクトをプルして、そこからActualWidthを抽出できました。


コントロールへの依存プロパティ

public FrameworkElement Target
{
    get { return (FrameworkElement)GetValue(TargetProperty);}
    set { SetValue(TargetProperty, value);}
}

// Using a DependencyProperty as the backing store for Target.
// This enables animation, styling, binding, general access etc...
public static readonly DependencyProperty TargetProperty =
    DependencyProperty.Register("Target", typeof(FrameworkElement), 
                                typeof(ThicknessWrapper), 
                                new PropertyMetadata(null, OnTargetChanged));

長方形へのバインドを示すコンシューマー側のXAML

<local:ThicknessWrapper Target="{Binding ElementName=thePanel}"/>

<Rectangle x:Name="thePanel" HorizontalAlignment="Stretch" Height="20"  Fill="Blue"/>

取得するコード

double width;

if (Target != null)
   width = Target.ActualWidth;  // Gets the current value.
0
ΩmegaMan