Telerik Forums
UI for WPF Forum
1 answer
116 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
91 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
134 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
69 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
87 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
72 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
485 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
256 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
126 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
1 answer
54 views
Hi,

I want to detect when compass is highlighted (means the mouse is over the compass while dragging a pane/ToolWindow).
In addition, I want to invoke the compass to appear, be highlighted and responding to drag-and-drop of non-dockable UIElement (let'a say ListBoxItem).
Can I highlight what part of the compass (and the compatible VisualCue) from code?

I tried to call OnDragContainer and OnDropContainer in implementation of RadDocking derived class (by events like MouseMove and MouseLostCapture events),
but for no avail because the VisualCue and the compass are just stuck as if I didn't call the OnDropContainer method.
The sample can be found here (DockingDragDropWithListBoxWPF.zip):
http://www.telerik.com/support/code-library/how-to-enable-drag-and-drop-from-radlistbox-to-raddocking-controls



Big thanks for your time!


Vladi
Telerik team
 answered on 15 May 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?