or
<
telerik:GridViewDataColumn
IsReadOnly
=
"True"
>
<
telerik:GridViewDataColumn.Header
>
<
CheckBox
telerik:StyleManager.Theme
=
"Metro"
x:Name
=
"deleteFoo"
>
Delete?
</
CheckBox
>
</
telerik:GridViewDataColumn.Header
>
<
telerik:GridViewDataColumn.CellTemplate
>
<
DataTemplate
>
<
CheckBox
IsChecked
=
"{Binding Path=isFoo,Mode=TwoWay}"
/>
</
DataTemplate
>
</
telerik:GridViewDataColumn.CellTemplate
>
</
telerik:GridViewDataColumn
>
StyleManager.SetTheme(
this
.deleteFoo,
new
MetroTheme());
StyleManager.SetThemeFromParent(
this
.deleteFoo,
this
);
public
class
Lookup : ValidationBase
{
[Required(ErrorMessage =
"Das Feld 'Name' muss gefüllt sein."
)]
public
string
Name
{
get
{
return
this
._name; }
set
{
this
._name = value;
}
}
public
class
Child : Lookup
{
...
}
<
Application
x:Class
=
"QualerDA.App"
<br> xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"<
br
> xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Views/LoginWindow.xaml"><
br
></
Application
>
<
telerik:RadWindow
<br> x:Class="SomeProject.SomeFOlder.LoginWindow"<
br
> xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"<
br
> xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"<
br
> xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"<
br
> telerik:StyleManager.Theme="Vista"><
br
> <
Grid
> ... </
Grid
><
br
></
telerik:RadWindow
>
<
Application
x:Class
=
"QualerDA.App"
<br> xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"<
br
> xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Views/LoginWindow.xaml"><
br
></
Application
>
<
telerik:RadWindow
<br> x:Class="SomeProject.SomeFOlder.LoginWindow"<
br
> xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"<
br
> xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"<
br
> xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"<
br
> telerik:StyleManager.Theme="Vista"><
br
> <
Grid
> ... </
Grid
><
br
></
telerik:RadWindow
>