Telerik Forums
UI for WPF Forum
1 answer
79 views
Am I missing something or is the documentation extremely incomplete at the moment? I most of the methods (at least the ones I've checked do not even have a description).
Milan
Telerik team
 answered on 28 Mar 2011
4 answers
155 views
Hi.
I need to bind my radtreelistview control to a XMLdocument which would be generated dynamically.Can you please provide a sample to achieve this?
Sharada
Top achievements
Rank 1
 answered on 28 Mar 2011
2 answers
90 views
Hello Telerik Team,
                              I am very happy to use Telerik controls.Bcoz it gives some color when Mouse Over and cursor on focus.

Example radcombox. when mouse over radcombo box border color change to yellow color.
In my UI i have some microsoft TextBox as well as telerik controls.i want to set all controls yellow color when mouse over.

Normally Microsoft wpf textbox does not give any color when mouse over.
How to set it?
can u give any suggession? 
sivakanth
Top achievements
Rank 1
 answered on 26 Mar 2011
5 answers
513 views
which text box can i use my layout design?
 having any rad text box in telerik?
trichy
Top achievements
Rank 1
 answered on 26 Mar 2011
0 answers
77 views
Hi.
I am binding radtreelistview with a xml document.Can you please suggest whether is it possible to save the state of the nodes (expanded/collapsed) on update ? I would appreciate your help.
Sharada
Top achievements
Rank 1
 asked on 25 Mar 2011
4 answers
97 views
Hi,

I have several comboboxes whose itemssource is bound to a common list of strings, when the list changes I raise a propertychanged event. In some circumstances some of the comboboxes display all of the strings and some do not. However the ones not showing all the strings do still find them for autocomplete purposes..
Trevor
Top achievements
Rank 1
 answered on 25 Mar 2011
1 answer
338 views
Hi,

I seem to have a probelm when trying to adjust the font size of the RadRichTextBox. If i set the FontSize attribute then it doesn't change the size of the text when entered. It always remains at size 12 which is to big for my UI.

What am i doing wrong?  
Boby
Telerik team
 answered on 25 Mar 2011
1 answer
223 views
I have 3 PaneGroups and I'd like one docked on the left, one docked on the top and one to have the equivalent of the WinForms Dock.Fill.

Here's what I have:
<telerik:RadDocking HasDocumentHost="True" HorizontalAlignment="Stretch" Name="radDocking1" VerticalAlignment="Stretch" Grid.ColumnSpan="2" Margin="0,30,0,0">
    <telerik:RadSplitContainer Orientation="Vertical">
        <telerik:RadPaneGroup Name="rpgExplorer" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
            <telerik:RadPane Header="Pane 1" />
            <telerik:RadPane Header="Pane 2" />
        </telerik:RadPaneGroup>
    </telerik:RadSplitContainer>
    <telerik:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedTop">
        <telerik:RadPaneGroup Name="rpgUpper" HorizontalContentAlignment="Left" VerticalContentAlignment="Stretch">
            <telerik:RadPane Header="Pane 1" />
            <telerik:RadPane Header="Pane 2" />
        </telerik:RadPaneGroup>
    </telerik:RadSplitContainer>
    <telerik:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedTop">
        <telerik:RadPaneGroup Name="rpgLower" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
            <telerik:RadPane Header="Pane 1" />
            <telerik:RadPane Header="Pane 2" />
        </telerik:RadPaneGroup>
    </telerik:RadSplitContainer>
</telerik:RadDocking>

How do I get the third RadSplitContainer to perform the equivalent of Dock.Fill?
George
Telerik team
 answered on 25 Mar 2011
2 answers
105 views
Here's a very simple sample. Maximize the window, click on a grid and just hold down the "down arrow" key. After a few seconds at most, you will see that current item will keep on being updated as the grid scrolls down, while the selected item just disappears.

<Window x:Class="WPFSpike2.MainWindow"
        xmlns:Controls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" Title="MainWindow" Height="350" Width="525">
     
    <Window.Resources>
        
    </Window.Resources>
    <UniformGrid Rows="3"
                 Columns="3">
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Single"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
    </UniformGrid>
 
</Window>
Yordanka
Telerik team
 answered on 25 Mar 2011
2 answers
48 views
Can we specify multiple filter descriptor for muliple columns? I think one way is using composite filter descriptor and setting the logical or and and condition. 

Also Can we bind the value property of Filter Descriptor with a textbox or a property in view model. I am following up MVVM so dont want to use code behind events..

Thanks
Ambuj
Ambuj
Top achievements
Rank 1
 answered on 25 Mar 2011
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
DataPager
PersistenceFramework
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
LayoutControl
ProgressBar
Sparkline
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
SplashScreen
Callout
Localization
Rating
Accessibility
CollectionNavigator
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?