Advanced Forum Search Results
-
Hi Jim, hi Hari,
thank you very much both for your help. This is the syntax I finally used:
Public ReadOnly TitleProperty As DependencyProperty = DependencyProperty.Register("Title", GetType(String), GetType(CustomEntryControl), Nothing)
Public Property Title() As String
Get
Return CType(GetValue(TitleProperty), String)
End ...
-
Hi Jim,
sorry, I didn't tell, line 22 of page.xaml doesn't exist! It has only 16 lines. The one I posted is line 14:
<dr:CustomEntryControl Title="blah"></dr:CustomEntryControl>
it doesn't matter whatever I set the property, the error keeps showing. I guess it has something to do ...
-
Hi All,
I am creating my custom control. In file mycustomcontrol.vb:
Partial Public Class MyCustomControl
Inherits Control
...
Public ReadOnly TitleProperty As DependencyProperty = DependencyProperty.Register("Title", GetType(String()), GetType(MyCustomControl()), Nothing)
Public Property Title() As String
Get
Return ...
-
Hi all,
I need help setting up my development environment for SL 2.0 beta 1 on VS2008. I cannot see complete errors, although I already changed the slr.dll.managed_manifest as stated here, I keep receiving these errors:
error: [Async_ExceptionOccurred]
Arguments:
Debugging resource strings are unavailable. Often the key and arguments ...