Telerik Forums
UI for WPF Forum
1 answer
154 views

I tried SelectionUnit="FullRow" to select a row with default highlights, and in RadGridView.RowStyle setting Trigger IsSelected with Value="True" to change a selection for all row with bacground colour. Nothing works properly (highlights only a cell), only IsMouseOver works that I expected.

 

<telerik:RadGridView x:Name=... SelectionUnit="FullRow" 

... >

                    <telerik:RadGridView.RowStyle>
                        <Style TargetType="{x:Type telerik:GridViewRow}">
                            <Style.Triggers>
                                <Trigger Property="IsSelected" Value="true" >
                                    <Setter Property="Background" Value="#CF7600"/>
                                </Trigger>
                            </Style.Triggers>
                        </Style>
                    </telerik:RadGridView.RowStyle>

 

Do you have any simple examples for solve this problem? 

First image: http://docs.telerik.com/devtools/wpf/controls/radgridview/selection/basics.html

but it's doesn't work.

Stefan
Telerik team
 answered on 19 May 2015
1 answer
144 views

I'd like to add a progressbar to a cell of treelistview (like in the example from the attachment).

I tried following, but nothing shows up on the view:

<telerik:RadTreeListView Margin="0,0,-2,0">
       <telerik:RadTreeListView.Columns>
           <telerik:GridViewColumn Header="Percent">
               <telerik:GridViewColumn.CellTemplate>
                   <DataTemplate>
                       <telerik:RadProgressBar Minimum="0" Maximum="100" Value="{Binding Progress}" Width="50"/>
                   </DataTemplate>
               </telerik:GridViewColumn.CellTemplate>
           </telerik:GridViewColumn>
       </telerik:RadTreeListView.Columns>
   </telerik:RadTreeListView>

any help appreciated

 â€‹

Dimitrina
Telerik team
 answered on 19 May 2015
1 answer
118 views

Hi - I am trying to select a shape with my finger on a touchscreen

 

for each shape I have a hander (vb.net);

     AddHandler shape.TouchDown, AddressOf Shape_TouchDown

 

...but no selection happens - I have a breakpoint on Shape_TouchDown and it is never being hit

 

Any ideas?

 

thanks

Petar Mladenov
Telerik team
 answered on 19 May 2015
1 answer
168 views

Hi - my application works fine with the mouse - panning (left button and drag), zooming (mouse wheel), selecting shapes (left button)

 

With the above, when selecting a shape, I have a handler for any MapShape and the MouseLeftButtonDown event - works fine.

 

Now I want to add this flexibility to a touchscreen usage of the same app, so expected (vb.net);

 

    AddHandler shape.MouseLeftButtonDown, AddressOf Shape_MouseLeftButtonDown
    AddHandler shape.TouchDown, AddressOf Shape_TouchDown

 

...to work fine for either mouse or touch.  Mouse works fine, but for touch;

What works - panning (finger and drag), zooming (pinching) - these worked regardless of attempting to integrate touch

What does not work is the selection of a shape with touch - adding a breakpoint shows that the event is not being hit with the above handler

 

Any ideas where I am going wrong, thanks

Petar Mladenov
Telerik team
 answered on 19 May 2015
0 answers
88 views

I have a theme project which will contain numerous resource dictionaries (nothing added at this stage), I want to be able to add a reference to this in the main project but I am unsure how to achieve this. Thanks for any help in advance.

WPF / VS 2013

 

Darren
Top achievements
Rank 1
 asked on 19 May 2015
0 answers
124 views

Hi,

is there any simple example where is shown, how so solve my behavior you can see in the attached file?

I habe 6 templates (1: two rows, first row one column, second row 2 coloumns,...) Each Column is a Frame
for a control called Widgets. In my Settings of the application i want the user to choose a template for the
startup. After choosing the template the user should drag and drop a widget to one column of the template.

On the attached file you see the UI and what i want to to. I want to drag a widget out of a listbox or a gridview
and drop it to a container. Before droping the user sees "Drop Widget 2" and after droping there should be the
image and the name of the Widget.

Can you please help me!

Thanks

Best Regards
Rene

ITA
Top achievements
Rank 1
 asked on 18 May 2015
1 answer
113 views
Do you have an example using the Radial Menu with a TreeListView?  I'd like to select a node in the hierarchy and pop a Radial Menu around it.
Kalin
Telerik team
 answered on 18 May 2015
1 answer
568 views

Using c# (not xaml) how do I draw a circle using EllipseData and set the centre to the middle of the circle so I can position it? I don't understand when the documentation says the width and height of EllipseData  are in degrees.

Andrew

Todor
Telerik team
 answered on 18 May 2015
3 answers
291 views

 I am following the documentation guide Binding to Dynamic Data with one change, the RadMenu.ItemContainerStyle is set from code and not from XAML.

_menu = new RadMenu();
var s = Application.Current.Resources["MenuItemStyle"] as Style;
if (s != null)
{
    _menu.ItemContainerStyle = s;
}

The XAML template matches the example, expect for the name of the nested items to match the class used to construct the menu items:

                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
                    xmlns:local="clr-namespace:Anvil.Desktop.Windows8">
     
    <Style x:Key="MenuItemStyle" TargetType="telerik:RadMenuItem">
        <Setter Property="Header" Value="{Binding Text}"/>
        <Setter Property="ItemsSource" Value="{Binding Items}"/>
        <Setter Property="Icon" Value="{Binding IconUrl}" />
        <Setter Property="IconTemplate" >
            <Setter.Value>
                <DataTemplate>
                    <Image Source="{Binding}" Stretch="None"/>
                </DataTemplate>
            </Setter.Value>
        </Setter>
    </Style>
     
</ResourceDictionary>

The resource dictionary is merged and available in the merged resources but the menu items are not rendered as in the with_itemcontainerstyle_set.png attachment and when removing the style setting code:

_menu = new RadMenu();
var s = Application.Current.Resources["MenuItemStyle"] as Style;
if (s != null)
{
    // _menu.ItemContainerStyle = s;
}

the class names of the menu items are displayed as in  without_itemcontainerstyle_set.png

Any suggestions?
 

 

 

 

Kalin
Telerik team
 answered on 18 May 2015
1 answer
162 views

For every ItemPropertyDefinition FilterDescriptor is created. Is it possible that for some ItemPropertyDefinition custom filter descriptor will be made? For example for

var customItem = new ItemPropertyDefinition("customPropertyName", typeof(string))

CustomFilterDescriptor (CustomFilterDescriptor : FilterDescriptorBase) will be made in RadDataFilter.FilterDescriptors.

 

Stefan
Telerik team
 answered on 15 May 2015
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
Rating
Accessibility
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?