在资源字典中添加行为

时间:2010-11-27 15:34:42

标签: wpf xaml expression-blend

我在应用程序中使用Mark Smith的Julmar MVVM-Helpers库,并希望将其中一个行为添加到我的所有文本框中。显然,这需要在资源字典中完成,但我仍然是配置它们的新手。

我想要做的是添加以下行为

namespace JulMar.Windows.Interactivity
{
   /// <summary>
   /// This behavior selects all text in a TextBox when it gets focus
   /// </summary>
   public class SelectTextOnFocusBehavior : Behavior<TextBox>
   {....

到我的所有文本框。我找不到的是关于如何在资源字典中添加它的语法。

1 个答案:

答案 0 :(得分:1)

假设SelectTextOnFocusBehavior类用于同一程序集中的XAML文件中,那么您需要执行以下操作:

<Application x:Class="MyApplication.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:local="clr-namespace:JulMar.Windows.Interactivity"
         StartupUri="MainWindow.xaml">
    <Application.Resources>

        <Style TargetType="TextBox">
            <Setter Property="local:SelectTextOnFocusBehavior.YourProperty" Value="YourValue" />
        </Style>

    </Application.Resources>
</Application>