or
<
Window
x:Class
=
"Propertydesigner.Window1"
xmlns:telerik
=
"clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"
xmlns:controls
=
"clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input"
Title
=
"Window1"
Height
=
"300"
Width
=
"300"
Loaded
=
"Window1_OnLoaded"
>
<
Grid
>
<
telerik:RadBusyIndicator
Grid.Row
=
"1"
IsIndeterminate
=
"True"
>
<
Grid
HorizontalAlignment
=
"Stretch"
Margin
=
"5"
>
<
Grid.RowDefinitions
>
<
RowDefinition
Height
=
"Auto"
/>
<
RowDefinition
Height
=
"*"
/>
</
Grid.RowDefinitions
>
<
StackPanel
>
<
TextBlock
Text
=
"Enter a document name"
Margin
=
"0 0 0 5"
/>
<
controls:RadAutoCompleteBox
x:Name
=
"SearchForDocuments"
DisplayMemberPath
=
"Name"
SelectionMode
=
"Single"
TextSearchMode
=
"Contains"
HorizontalAlignment
=
"Stretch"
Margin
=
"0 0 0 3"
/>
</
StackPanel
>
<
StackPanel
Grid.Row
=
"2"
Orientation
=
"Horizontal"
HorizontalAlignment
=
"Right"
VerticalAlignment
=
"Center"
Margin
=
"0 10 0 0"
>
<
telerik:RadButton
Content
=
"OK"
Width
=
"70"
Margin
=
"0 0 10 0"
/>
<
telerik:RadButton
Content
=
"Cancel"
Width
=
"70"
/>
</
StackPanel
>
</
Grid
>
</
telerik:RadBusyIndicator
>
</
Grid
>
</
Window
>