Telerik Forums
UI for WPF Forum
22 answers
323 views
I am doing a prototype with the Carousel and I would like it to loop back to the 1st item is there a Property to set or do I have to code this functionality?

Thanks,

blair
N Mackay
Top achievements
Rank 1
 answered on 05 Jan 2012
3 answers
254 views
Hi,

I'm using the Rad TreeListView to display hierachical data. I'm succeding in displaying the "CurrentResult.png" attached file.
However it's not clear enought for my customer. I want to display a view like the "ExpectedResult.png" attached file.

> Is-it possible to show foreground color like this ?
> Is-it possible to have the "ExpectedResult" view ? With merge columns ?
> Can you post a sample of this ?

Thanks very much in advance and happy new years !

Regards,
Mickaƫl
Vanya Pavlova
Telerik team
 answered on 05 Jan 2012
2 answers
124 views
Hi telerik,

The users of our MVVM application would like items to be 'marked' in various ways; a combination of italics and bold is desired.

Currently, we style the items as shown below, reacting to changes in IsSelected.

The other thing we would like to react on is whether the treeitem's editor (in another window) is given focus, but of course there is no relevant RadTreeViewItem property to bind to - how would you go about this? Can we intercept the styling somehow and for each item - in code-as-opposed-to-markup - apply the style as we see fit?

Thanks for any input,

Anders, Denmark

 

 

 

<Controls:RadTreeView.ItemContainerStyle>

 

 

 

 

<Style TargetType="{x:Type Controls:RadTreeViewItem}">

 

 

 

 

<Setter Property="WorkspaceExplorer:MouseDoubleClickBehavior.MouseDoubleClick" Value="{Binding ActivateItemCommand}" />

 

 

 

 

<Setter Property="Margin" Value="0"/>

 

 

 

 

<Setter Property="Padding" Value="0"/>

 

 

 

 

<Setter Property="IsExpanded" Value="{Binding IsExpanded, Mode=TwoWay}" />

 

 

 

 

<Setter Property="IsSelected" Value="{Binding IsSelected, Mode=TwoWay}" />

 

 

 

 

<Setter Property="FontWeight" Value="Normal" />

 

 

 

 

<Style.Triggers>

 

 

 

 

<Trigger Property="IsSelected" Value="True">

 

 

 

 

<Setter Property="FontWeight" Value="Bold" />

 

 

 

 

</Trigger>

 

 

 

 

</Style.Triggers>

 

 

 

 

</Style>

 

 

 

 

</Controls:RadTreeView.ItemContainerStyle>

 

Anders
Top achievements
Rank 1
 answered on 05 Jan 2012
4 answers
137 views
Hi,
        In my WPF application i am using Carousel Control. I am using "CarouselScrollButton" for navigation the initial data is look like this
1                    5
      2        4
           3                                              After Clicking the single navigation button the the data looks like this

                       1                                
I want to restrict the navigation like this when ever the data comes like this i need to restrict the Navigation button to be disable
                       3
                 2
             1

Thanks & Regards,
Rajini.

Rajini
Top achievements
Rank 1
 answered on 05 Jan 2012
0 answers
75 views
Hi ! 
I have a DataTable below.(DB2 Not Support bool type)
ID / Name / Sex
============
1    lee        M 
2    lee        F 
3    lee        M 

how can i  convert to Sex Column to CheckBoxColumn  
at auto generate = true , also not define column defintion
result ==> id 1 checked ,2 unchecked, 3 checked
Is Possible?
please helpme





lee
Top achievements
Rank 1
 asked on 05 Jan 2012
2 answers
114 views

We are using MVVM Prism for our application, and there are three assemblies in our project.
myWPF (general stuffs and user configuration)
myApp (knows only myWPF)
myModules (knows only myWPF)

Does Telerik provide any user configuration object for storing/retrieving user preferences such as application theme, docking layout, default selection of a control in a module, and etc...

Thanks




Chris
Top achievements
Rank 1
 answered on 04 Jan 2012
2 answers
99 views
Hello

I have only few items that I wanna add to backstage and all are simple buttons with commands. I don't need the right side of backstage. Is there a way to hide it?
Krzysztof
Top achievements
Rank 1
 answered on 04 Jan 2012
2 answers
160 views
Hi,

We are using some RadGridView in multiple RadDocking Panes.
Thoses grids have over 1000 items and we got an serious performance issue when switch between panes (hosted in DocumentHost). It takes about 1-2sec before displaying the pane.

I don't understand since in Q2 2011 it works pretty much. But now in Q3 2011 it's really slow.

The grid is quite simple :

<Grid>
                    <Grid.RowDefinitions>
                        <RowDefinition Height="Auto"/>
                        <RowDefinition Height="500"/>
                    </Grid.RowDefinitions>
                    <GroupBox Header="Recherche"  Margin="5">
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="Filtre" Margin="5"/>
                            <TextBox x:Name="txtFilter" Margin="5" Width="200"/>
                        </StackPanel>
                    </GroupBox>
 
                    <telerik:RadGridView Grid.Row="1" Height="500" ShowGroupPanel="False" IsFilteringAllowed="False" CanUserFreezeColumns="False" CanUserReorderColumns="False" ValidatesOnDataErrors="None" FilterTextBox:TextBoxFilterBehavior.TextBox="{Binding ElementName=txtFilter}"  SelectedItem="{Binding SelectedItem}" IsReadOnly="True" RowIndicatorVisibility="Collapsed"  HorizontalAlignment="Stretch" VerticalAlignment="Stretch" ItemsSource="{Binding ItemList}" AutoGenerateColumns="False">
                        <i:Interaction.Triggers>
                            <i:EventTrigger EventName="MouseDoubleClick" >
                                <ei:CallMethodAction TargetObject="{Binding}"  MethodName="EditCommand"/>
                            </i:EventTrigger>
                        </i:Interaction.Triggers>
 
                        <telerik:RadGridView.Columns>
                            <telerik:GridViewDataColumn Width="100" Header="Code" DataMemberBinding="{Binding Code}" UniqueName="Code"/>
                            <telerik:GridViewDataColumn Width="450" Header="DĆ©signation Longue" DataMemberBinding="{Binding LongName}"/>
                            <telerik:GridViewCheckBoxColumn Width="80" Header="BloquĆ©" DataMemberBinding="{Binding IsLocked}" UniqueName="IsLocked"/>
                        </telerik:RadGridView.Columns>
                         
                    </telerik:RadGridView>
                </Grid>

I've tested to remove the GridViewCheckBoxColumn, without luck.

When me application window is sized to the minimum in order to display only 1 row in the grid, it's really fast, but in full screen (displaying about 30 items visible) it's really slow...

Any help ?

Thanks.
Bernard
Top achievements
Rank 1
 answered on 04 Jan 2012
1 answer
102 views
How to change the gridview selected row backcolor,forecolor and font style.
Vlad
Telerik team
 answered on 04 Jan 2012
0 answers
204 views
Hi,

I'm wondering whether there is such a Control in the WPF suite to enable me to view powerpoint / openoffice impress slideshows in my WPF application. If not, does anyone has any suggestions how to go about doing this within my application, rather than spawning the powerpoint viewer as a separate full screen application? Thanks for your help.
Ring Lee
Top achievements
Rank 1
 asked on 04 Jan 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?