This question is locked. New answers and comments are not allowed.
I'm using a RTSData form in a UserControl. It includes a DataTemplate and a stack panel for Login form.
The RTSDataForm has properties like AutoEdit and a binding in the CurrentItem. All the bindings in side this Dataform template got binded to a resource file to get the values.
But the problem is this is working fine in Visual studio and no error. But in Expression blend it is showing this error.
Please find the enclosed screenshots showing the error message.
Thank you for your support
Ravella
The RTSDataForm has properties like AutoEdit and a binding in the CurrentItem. All the bindings in side this Dataform template got binded to a resource file to get the values.
But the problem is this is working fine in Visual studio and no error. But in Expression blend it is showing this error.
Please find the enclosed screenshots showing the error message.
<
userControl:RTSDataForm
Grid.Row
=
"1"
x:Name
=
"LoginForm"
BorderThickness
=
"0"
AutoEdit
=
"True"
HeaderVisibility
=
"Collapsed"
CommandButtonsVisibility
=
"None"
AutoGenerateFields
=
"False"
CurrentItem
=
"{Binding LoginUser}"
FontSize
=
"13"
>
<
userControl:RTSDataForm.EditTemplate
>
<
DataTemplate
>
<
StackPanel
>
<
userControl:RTSDataField
Margin
=
"5"
>
<
TextBox
x:Name
=
"UserName"
KeyDown
=
"UserName_KeyDown"
Text
=
"{Binding UserName,Mode=TwoWay}"
telerik:StyleManager.Theme
=
"{StaticResource Theme}"
ex:BindingExtensions.UpdateSourceOnChange
=
"True"
/>
</
userControl:RTSDataField
>
<
userControl:RTSDataField
Margin
=
"5"
>
<
PasswordBox
x:Name
=
"Password"
KeyDown
=
"Password_KeyDown"
Password
=
"{Binding Password,Mode=TwoWay}"
telerik:StyleManager.Theme
=
"{StaticResource Theme}"
ex:BindingExtensions.UpdateSourceOnChange
=
"True"
/>
</
userControl:RTSDataField
>
<
userControl:RTSDataField
Label
=
""
Margin
=
"5"
>
<
CheckBox
IsChecked
=
"{Binding RememberMe, Mode=TwoWay}"
Content
=
"Keep me logged in"
telerik:StyleManager.Theme
=
"{StaticResource Theme}"
/>
</
userControl:RTSDataField
>
</
StackPanel
>
</
DataTemplate
>
</
userControl:RTSDataForm.EditTemplate
>
</
userControl:RTSDataForm
>
Thank you for your support
Ravella