Hi,
I am evaluating the Rad controls for a new project.
specifically Radfilter and GridView.
I have added both to my project but they are not visible in designer or on the wpf form when i run the app.
Am I missing something
See xaml below
I am evaluating the Rad controls for a new project.
specifically Radfilter and GridView.
I have added both to my project but they are not visible in designer or on the wpf form when i run the app.
Am I missing something
See xaml below
<
Window
x:Class
=
"TelerikRadFilter.MainWindow"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
Title
=
"MainWindow"
Height
=
"auto"
Width
=
"auto"
>
<
Grid
>
<
Grid.RowDefinitions
>
<
RowDefinition
/>
<
RowDefinition
/>
</
Grid.RowDefinitions
>
<
StackPanel
>
<
Button
Content
=
"YTest"
HorizontalAlignment
=
"Center"
Width
=
"100"
/>
<
telerik:RadDataFilter
Name
=
"radDataFilter"
Background
=
"Aqua"
Grid.Row
=
"0"
MinHeight
=
"193"
MaxHeight
=
"250"
Width
=
"700"
Source
=
"{Binding Employees}"
Margin
=
"1"
/>
</
StackPanel
>
<
telerik:RadGridView
Name
=
"radGridView"
Grid.Row
=
"1"
MinHeight
=
"193"
MaxHeight
=
"250"
Width
=
"700"
ItemsSource
=
"{Binding Employees}"
ColumnWidth
=
"*"
IsFilteringAllowed
=
"False"
CanUserFreezeColumns
=
"False"
RowIndicatorVisibility
=
"Collapsed"
AutoGenerateColumns
=
"False"
Margin
=
"1"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding FirstName}"
Header
=
"First Name"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding LastName}"
Header
=
"Last Name"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding DateOfBirth}"
DataFormatString
=
"{}{0:d}"
Header
=
"Date Of Birth"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Address}"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding City}"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding State}"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Salary}"
DataFormatString
=
"{}{0:C2}"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>
</
Grid
>
</
Window
>