This question is locked. New answers and comments are not allowed.
I'm using MVVM design pattern and trying to access ShowDialog of the RadScheduleView.
I have the following set up:
I placed RadScheduleView_ShowDialog in MainPageViewModel.cs but it cannot find it.
What do I need to do to get this working?
I have the following set up:
<
UserControl
xmlns:viewModels
=
"clr-namespace:Scheduler.ViewModels"
>
<
UserControl.Resources
>
<
viewModels:MainPageViewModel
x:Key
=
"ViewModel"
/>
...
</
UserControl.Resources
>
<
telerik:RadScheduleView
telerik:StyleManager.Theme
=
"Office_Silver"
x:Name
=
"radScheduleView"
Grid.Column
=
"1"
Grid.Row
=
"0"
ShowDialog
=
"RadScheduleView_ShowDialog"
>
I placed RadScheduleView_ShowDialog in MainPageViewModel.cs but it cannot find it.
What do I need to do to get this working?