WPF,属性 没有 return 值绑定

WPF, Property does not return value to the binding

所以,我有一个项目,其中包含一个在字符串数组上旋转的滚动文本 (marqee)。我希望它在每次动画迭代 20 秒后更改字符串值。

但是有一个问题,使用 INotifyPropertyChanged 接口绑定到文本块(使用 XAML)的 属性(ScrollingText) 在第一次迭代后不会 return。即使它正常刷新(在 set 部分),它也不会 return 在 Getter 部分....除了默认 ctor 中的第一个 set。

主要CLASS:

class GetScrollingText : CommonBase
{
    private string _scrollingtext = String.Empty;
    DoubleAnimation Animation;

    public GetScrollingText()
    {
        ScrollingText = GetScrollString();
    }

    public string ScrollingText
    {
        get
        {
            return _scrollingtext;
        }
        set
        {
            if (value != _scrollingtext)
            {
                _scrollingtext = value;
                RaisePropertyChanged("ScrollingText");
            }               
        }
    } // INJECTS the string in the animated textblock {binding}.

    public TextBlock scrollBlock { get; set; }

    string GetScrollString()
    {
        .........
        return scrolltext;
    }      

    public void LeftToRightMarqee(double from, double to)
    {
        Animation = new DoubleAnimation();
        Animation.From = from;
        Animation.To = to;
        Animation.Duration = new Duration(TimeSpan.FromSeconds(20));
        Animation.Completed += animation_Completed;
        scrollBlock.BeginAnimation(Canvas.LeftProperty, Animation);
    }

    void animation_Completed(object sender, EventArgs e)
    {
        ScrollingText = GetScrollString();           
        scrollBlock.BeginAnimation(Canvas.LeftProperty, Animation);
    }
}

出于某种原因,animation_Completed 事件仅更改值 ScrollingText,但它不会调用 Getter 部分,因此 {binding} 没有 return。

XAML:

<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:vm="clr-namespace:AnnouncingSys"
    x:Class="AnnouncingSys.MainWindow"
    x:Name="Window"
    Width="1280" Height="720" MinHeight="566" MinWidth="710">

    <Window.Resources>
        <vm:GetScrollingText x:Key="ScrollingText"/>
    </Window.Resources>
    <Canvas x:Name="MainCanvas" ClipToBounds="True" Margin="0,0,0,0" Grid.Row="5" Background="Black" Grid.ColumnSpan="5" >
        <TextBlock x:Name="ScrollBlock" TextWrapping="Wrap" VerticalAlignment="Top" Height="113" Width="5147" Canvas.Left="-1922" Text="{Binding ScrollingText, Source={StaticResource ScrollingText}}"/>
    </Canvas>
</Window>

代码隐藏:

public partial class MainWindow : Window
{
    GetScrollingText scrolling = new GetScrollingText();

    public MainWindow()
    {
        InitializeComponent();
        scrolling.scrollBlock = this.ScrollBlock;
        scrolling.LeftToRightMarqee(2000, -3000);
    }
}

最后是助手 class CommonBase:

public class CommonBase : INotifyPropertyChanged
{
    protected CommonBase()
    {
    }

    public event PropertyChangedEventHandler PropertyChanged;

    protected void RaisePropertyChanged(string PropertyName)
    {
        PropertyChangedEventHandler handler = this.PropertyChanged;

        if (handler != null)
        {
            PropertyChangedEventArgs e = new PropertyChangedEventArgs(PropertyName);
            handler(this, e);
        }
    }
}

我什至在 Getter 的 return 块上放置了一个断点,但它只在第一个:"ScrollingText = GetScrollString()" 上激活。我的意思是,每次更改值时不应该 return 吗???

您正在使用 GetScrollingText class 的两个不同实例,一个在 XAML 中作为 StaticResource,另一个在代码后面作为 scrolling 中的字段 class主窗口。

无需在 XAML 中创建 StaticResource,您只需设置 MainWindow 的 DataContext 属性:

public partial class MainWindow : Window
{
    GetScrollingText scrolling = new GetScrollingText();

    public MainWindow()
    {
        InitializeComponent();
        scrolling.scrollBlock = this.ScrollBlock;
        scrolling.LeftToRightMarqee(2000, -3000);
        DataContext = scrolling; // here
    }
}

现在您不会显式设置绑定的 Source 属性,因为 DataContext 用作默认绑定源:

<TextBlock ... Text="{Binding ScrollingText}"/>