TextBlock 的路由事件

发布于 2024-12-05 19:39:53 字数 87 浏览 1 评论 0原文

如何从 wpf 中的代码隐藏 ViewModel 中的 TextBlock 的 RoutedEvents。 请让我知道如何在 wpf 代码后面绑定路由事件。谢谢

How to fire RoutedEvents of TextBlock in ViewModel from code behind in wpf.
Kindly let me know, how I can bind routed events in wpf code behind. Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦中楼上月下 2024-12-12 19:39:53

好吧,我使用这个(您将需要 Silverlight 中的 System.Windows.Interactivity,但我怀疑它在 WPF 中类似):

xmlns:GalaSoft_MvvmLight_Command="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Extras.SL4"   
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"


 <TextBlock Text="{Binding InputValue, Mode=TwoWay}">
        <i:Interaction.Triggers>
            <i:EventTrigger EventName="GotFocus">
                <GalaSoft_MvvmLight_Command:EventToCommand Command="{Binding InputValueGotFocusCommand}" />
            </i:EventTrigger>
        </i:Interaction.Triggers>
    </TextBlock>

您可以在 Blend 中轻松完成此操作

Well I use this (you will need System.Windows.Interactivity in Silverlight, but I suspect it's similar in WPF):

xmlns:GalaSoft_MvvmLight_Command="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Extras.SL4"   
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"


 <TextBlock Text="{Binding InputValue, Mode=TwoWay}">
        <i:Interaction.Triggers>
            <i:EventTrigger EventName="GotFocus">
                <GalaSoft_MvvmLight_Command:EventToCommand Command="{Binding InputValueGotFocusCommand}" />
            </i:EventTrigger>
        </i:Interaction.Triggers>
    </TextBlock>

You can do this easy in Blend

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文