1

我正在为 Windows Embedded 项目开发 Silverlight。我定义了一个自定义用户控件,它由一个 TextBlock 控件和一个图像控件组成。我想在自定义控件的不同实例中指定不同的文本。因此,我在 Expression Blend 中执行了以下操作: 在 Blend 代码隐藏 (C#) UserControl1.xaml.cs 中,我定义并注册了一个 DependencyProperty 并设置 TextBlock 的 DataContext:

namespace WindowsEmbeddedSilverlightApplication1
{
    public partial class UserControl1 : UserControl
    {
        public UserControl1()
        {
            InitializeComponent();
            ItemText.DataContext = this;
        }

        public String MyText
        {
            get { return (String)GetValue(MyTextProperty); }
            set { SetValue(MyTextProperty, value); }
        }

        public static readonly DependencyProperty MyTextProperty =
            DependencyProperty.Register("MyText", typeof(String), typeof(UserControl1), null);
    }
}

在 UserControl1.xaml 中:

<UserControl
    ......
    x:Class="WindowsEmbeddedSilverlightApplication1.UserControl1"
    d:DesignWidth="196" d:DesignHeight="85">

    <Grid x:Name="LayoutRoot">
        <Image x:Name="ItemImage" Margin="0,0,90,0"/>
        <TextBlock x:Name="ItemText" HorizontalAlignment="Right" Width="68" Text="{Binding MyText}" TextWrapping="Wrap" Height="23" VerticalAlignment="Bottom"/>
    </Grid>
</UserControl>

在 MainPage.xaml 中使用自定义用户控件:

<UserControl
    ......
    xmlns:local="clr-namespace:WindowsEmbeddedSilverlightApplication1"
    x:Class="WindowsEmbeddedSilverlightApplication1.MainPage"
    Width="640" Height="480">

    <Grid x:Name="LayoutRoot" Background="White">
        <local:UserControl1 HorizontalAlignment="Left" Margin="94,117,0,0" Width="196" Height="85" VerticalAlignment="Top" MyText="Text1"/>
        <local:UserControl1 HorizontalAlignment="Left" Margin="94,217,0,0" Width="196" Height="85" VerticalAlignment="Top" MyText="Text2"/>
    </Grid>
</UserControl>

因此,当我在 Expression Blend 中运行应用程序时,有了这些,我能够看到自定义用户控件的两个实例上显示的正确文本。

然后我将项目导入 Visual Studio Silverlight for Windows Embedded Application。我读了一些帖子,提到我必须重新注册。所以我做了以下事情:

在 UserControl1.h 中:

    static HRESULT Register()
    {
        HRESULT hr = E_FAIL;
        hr = XRCustomUserControlImpl<UserControl1>::Register (__uuidof(UserControl1), L"UserControl1", L"clr-namespace:WindowsEmbeddedSilverlightApplication1");
        hr = RegisterDependencyProperties();
        return hr;
    }

    static HRESULT RegisterDependencyProperties();

    HRESULT SetMyText(WCHAR* pText);
    HRESULT GetMyText(BSTR* pbstrText);

public:
    static DEPENDENCY_PROPERTY_ID m_dpMyTextID;

在 UserControl1.cpp 中:

HRESULT UserControl1::RegisterDependencyProperties()
{
    HRESULT hr = E_FAIL;
    IXRApplication* pApplication = NULL;

    XRDependencyPropertyMetaData dpm = XRDependencyPropertyMetaData();
    dpm.Size = sizeof(XRDependencyPropertyMetaData);
    dpm.pfnPropertyChangeNotification = NULL;
    dpm.pfnTypeConverter = NULL;
    dpm.pfnEnumerableCreation = NULL;

    XRValue defValue;
    defValue.vType = VTYPE_READONLY_STRING;
    defValue.pReadOnlyStringVal = L"Default";
    dpm.DefaultValue = defValue;

    hr = GetXRApplicationInstance(&pApplication);
    hr = pApplication->RegisterDependencyProperty(L"MyText", VTYPE_BSTR, ControlID(), &dpm, &m_dpMyTextID);

    pApplication->Release();

    return hr;
}

HRESULT UserControl1::SetMyText( WCHAR* pText )
{
    HRESULT hr = E_FAIL;

    XRValue xrValue;
    xrValue.vType = VTYPE_READONLY_STRING;
    xrValue.pReadOnlyStringVal = pText;

    hr = SetPropertyValue(m_dpMyTextID, &xrValue);

    return hr;
}

HRESULT UserControl1::GetMyText( BSTR* pbstrText )
{
    HRESULT hr = E_FAIL;

    XRValue xrValue;

    hr = GetPropertyValue(m_dpMyTextID, &xrValue);

    if (SUCCEEDED(hr))
    {
        *pbstrText = xrValue.bstrStringVal;
    }

    return hr;
}

我没有更改生成的 MainPage.h 和 MainPage.cpp 代码中的任何内容。

编译成功,执行也ok。显示自定义控件,但不显示我放入 xaml 中的文本。

我做错了什么或错过了什么?我在 Internet 上找不到有关此主题的太多信息。谁能指出我正确的方向。谢谢!

4

1 回答 1

1

问题解决了。

我向 XRDependencyPropertyMetaData.pfnPropertyChangeNotification 添加了回调:

dpm.pfnPropertyChangeNotification = NamePropertyChanged;

根据 MSDN,PFN_PROPERTY_CHANGE 是 XAML for Windows Embedded 在关联属性的值更改时调用的回调方法。实际上,在初始化期间会调用此回调。在回调中,我将 TextBlock 文本设置为新值:

void UserControl1::NamePropertyChanged(__in IXRDependencyObject* pControl, __in XRValue* pOldValue, __in XRValue* pNewValue)
{
    HRESULT hr;
    if (pControl && pOldValue && pNewValue)
    {
        UserControl1 *tempObj;
        pControl->QueryInterface(__uuidof(UserControl1), (void**)&tempObj);
        hr = tempObj->m_pItemText->SetText(pNewValue->pReadOnlyStringVal);
    }
}

因此,将 DependencyProperty 值绑定到 C++ 代码隐藏中的控件的方式与 C# 代码隐藏不同。

于 2013-12-10T07:10:32.020 回答