0

カスタム コントロールを実装しましたが、バインディングを実行する必要があります。

public class SomeControl : Control
    {
        internal static DependencyProperty AProperty;
        internal static DependencyProperty BProperty;
        internal static DependencyProperty CProperty;

        static AnimationControl()
        {

            DefaultStyleKeyProperty.OverrideMetadata(typeof(AnimationControl), new FrameworkPropertyMetadata(typeof(AnimationControl)));

            AProperty = DependencyProperty.Register("A", typeof(double), typeof(SomeControl));
            BProperty = DependencyProperty.Register("B", typeof(Boolean), typeof(SomeControl));
            CProperty = DependencyProperty.Register("C", typeof(String), typeof(SomeControl));

        }

        public double A
        {
            get { return (double)this.GetValue(AProperty); }
            set { SetValue(AProperty, value); }
        }

        public Boolean B
        {
            get { return (Boolean)this.GetValue(BProperty); }
            set { SetValue(BProperty, value); }
        }

        public String C
        {
            get { return (String)this.GetValue(CProperty); }
            set { SetValue(CProperty, value); }
        }

    }

MainWindow.xaml:

<TextBox TextChanged="speedsBoxChanged" Name="speedsBox" Text="1, 2, 3, 4, 5" Grid.Row="0" Grid.Column="2" Margin="2" />
        <Slider Name="slider" Grid.Row="0" Grid.Column="3" Margin="2" Minimum="20" Maximum="750" />
    <local:AnimationControl                               
                                    A="{Binding A}"
                                    B="{Binding B}"
                                    C="{Binding C}" />
<CheckBox Name="versionCheckBox" Click="VersionChanged" IsChecked="False" VerticalAlignment="Center"/>

MainWindow.cs:

public event PropertyChangedEventHandler PropertyChanged;

        public double A
        {
            get { return lri.Speed; }
            set
            {
                lri.Speed = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs("A"));
                }
            }
        }

        public string C
        {
            get { return speedsBox.Text; }
            set
            {
                speedsBox.Text = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs("B"));
                }
            }
        }

        public Boolean B
        {
            get { return (Boolean)versionCheckBox.IsChecked; }
            set
            {
                versionCheckBox.IsChecked = (Boolean)value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs("C"));
                }
            }
        }

しかし、何も機能していません。なぜですか?私はこれを理解しようと試みてきましたが、まだ何もありません。基本的には、スライダーの値を変えてアニメーション速度(lri.Speed)を更新したい、TextBoxからCプロパティを更新したい、チェックボックスからBを更新したい。

4

1 に答える 1