How is IXRTextBlockPtr used?

I have a XAML file that is made by Expression Blend. But the Silverlight project that corresponds to it has to be in C++ instead of C# (it has something to do with being part of an embedded system).

The automatically gernerated C++ code referrs to the TextBlock code in the header file like this:

IXRTextBlockPtr            m_pFoo;            // <TextBlock x:Name="Foo">

So how do I assign a value to the text block such that it appears in the window defined in the XAML?

There does not seem to be much information to be googled about IXRTextBlockPtr.

link|improve this question

79% accept rate
1  
It is an auto-generated type, derived from _com_ptr_t, that you got from importing the type library. You are heading for a concrete wall about half a mile thick, you cannot run C++ code in the Silverlight host. Only verifiable managed code is allowed. – Hans Passant Apr 11 '11 at 2:21
feedback

1 Answer

up vote 1 down vote accepted

The formal MSDN documentation for IXRTextBlock tells you exactly what to do: look at the XRPtr<> smart-pointer for IXRTextBlockPtr's interface.

If we then look at the XRPtr<> class template, we see it has operator= and Attach(). Presumably operator= will suit your needs.

link|improve this answer
the method is "SetText" and takes a Wide Character pointer (WCHAR*). How do you convert a character array to a Wide Character pointer? – xarzu Apr 11 '11 at 15:12
BY TYPE CASTING – xarzu Apr 11 '11 at 15:14
@xarzu : There are many ways; the standard-supported way is std::mbstowcs. If you're using MFC or ATL, then the CA2CW macro is handier. Of course, the best solution is to work solely with wide characters to begin with so you won't have this problem. – ildjarn Apr 11 '11 at 15:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.