views:

70

answers:

1

hello, i am new to WPF and i want to create user control with Dialog Box Property Value Editor in VB.NET. i find this example in C# and rewrite it to VB.NET but it does not work. Is creating property value editor in VB.NET somehow special, because i can`t find examples in VB.NET

thanks

A: 

No, there's nothing special about writing property editors or any other kind of control or component in VB.NET versus C#. It's just that a lot of WPF samples are written in C#, perhaps because the VB.NET community has been more conservative about adopting WPF [citation needed]. You should do just fine by translating the C# code you find to VB in the normal way; you shouldn't need to change the XAML of course.

itowlson