Telerik Forums
UI for WPF Forum
0 answers
58 views

Hi,

Is there a way for a telerik radbutton to only show the image that's chosen for a button? 

Opacity is at 100% yet i am still seeing the actual button outline and grey fill/background around my buttons.

See below image.

Thanks

 

Yves
Top achievements
Rank 1
 asked on 04 Jan 2024
1 answer
59 views

Hello!  I'm interested in the VirtualGrid control for WPF, since the demo looks very fast for very large data sets.  For our application, we want to show a column group header, to indicate that a set of columns are related to each other.  In this dummy example, the data for four people is displayed.  We'd like to indicate that there were four groups of results for each person, and have the results displayed under each group like so:



Ideally, the Row header (the name of each person), the Column headers and the Column Group headers should be fixed, so the user can scroll the rows and columns at will, but still see the headers.   We would also like to be able to capture mouse inputs when the user clicks on a column or row header or the group header, if possible.

Is something like this possible using the control? 
Thanks,
Ed

Martin Ivanov
Telerik team
 answered on 04 Jan 2024
1 answer
74 views

I need help with the node shape I have provided in the image. If this type of node can be drawn in your control , then can you please provide me with the code of the chart drawn in diagram control with the help of node (as per layout shown in attached png file) (include three or four nodes for the example).

I have tried to use it in custom shape but I didn't get any success.

I am using ui for WPF ( version latest ).

If you can help  me out with this problem  (as I have failed by other tool providers) then i might think of purchasing your product license soon.

Martin Ivanov
Telerik team
 answered on 03 Jan 2024
1 answer
79 views
In the WPF Demos (RadAutoCompleteBox RadHighlightTextBox), the only code shown is a skeleton XAML and not the parts of the code that actually do the work. Where can I find that example's code? I searched the Telerik GitHub repos to no avail.
Stenly
Telerik team
 answered on 01 Jan 2024
0 answers
72 views

Hello

I have a RadRibbonView that I would like to set some properties, and assign events, through the page code-behind.

e.g, setting the text on the various RadMenuItems in the Ribbon.

 

Any suggestions or help on how to do this is appreciated.

Thanks!

 

Curt
Top achievements
Rank 1
Iron
 asked on 29 Dec 2023
1 answer
70 views

I am currently using a RadCartesianChart and ChartSeriesProvider to display multiple ScatterPointSeries.  These series will have 10's of thousands of points in them.  The only rendering option that has worked well for this is BitmapRenderOptions. However, when using BitmapRenderOptions I can't get tooltips to show and I can't select any points.

Is this a know limitation of the BitmapRenderOptions or is there a way to get it to work?  I'm basically using the Large Data demo but trying to add a selection and tooltip behavior. 

Selection and tooltip work fine if I use the default XamlRenderOptions, but the performance is too bad to use.

Martin Ivanov
Telerik team
 answered on 25 Dec 2023
1 answer
122 views

To simplify things, consider the following MainWindow class inheriting fromSystem.Windows.Window:

using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Input;

namespace WpfApp1
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            StateChanged += MainWindow_StateChanged;
            MouseUp += MainWindow_MouseUp;
        }

        private void MainWindow_StateChanged(object sender, EventArgs e)
        {
            if (WindowState == WindowState.Maximized)
            {
                Debug.WriteLine("Window Maximized");
            }
        }

        private void MainWindow_MouseUp(object sender, MouseButtonEventArgs e)
        {
            Debug.WriteLine("Window MouseUp");
        }
    }
}

When this window is in normal state if I double click its title bar then it is maximized and a Window.MouseUp event is raised, which results in the following output in VS Output pane:

Window Maximized
Window MouseUp
Now replace this Window with Telerik.Windows.Controls.Docking.ToolWindow.cs (v 2022.3.1005.60) and assume we double click the title bar of a ToolWindow and make it maximized. My question is: Are these events raised always in this particular order; that is first maximized and then mouse up in ToolWindow? Can you guarantee this order with all conditions? (Heavy UI load, multiple threads etc.) Guaranteeing this order is crucial for me since I depend on this order for my control in the ToolWindow.
Martin Ivanov
Telerik team
 answered on 25 Dec 2023
0 answers
72 views

Hi,

 I’m trying to handle the drag and drop operation from a winforms control (RadGridView for now, can be RadTreeView or RadListView too) to the RadScheduleView WPF.

 I have overridden the ConvertDraggedData from ScheduleViewDragDropBehavior class.

 The event isn’t firing when I’m dragging a row from my winforms GridView over the schedule.

 Is there a way to convert dragged data from the grid in winforms that make the event fires in WPF?

 Or another way to achieve the expected behavior ?

 Thanks.

 Rémi

Fabrice
Top achievements
Rank 2
Iron
Iron
 asked on 22 Dec 2023
0 answers
44 views

Hi all,
If I try to search over as a string field, I have an issue because it's handled like an integer and ends in StackOverFlowException.
Do you have any idea?
I appreciate any help you can provide.


Dev2WPF
Top achievements
Rank 1
 asked on 20 Dec 2023
0 answers
88 views

Hi,

Testing a gridview custom control with .NET 6 does not render on screen.

The same example with .net framework works.


 public class CustomGrid : RadGridView
 {
     static CustomGrid()
     {
         DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomGrid), new FrameworkPropertyMetadata(typeof(CustomGrid)));
     }

     protected override void OnInitialized(EventArgs e)
     {
         base.OnInitialized(e);
                 
     }
 }


 <Grid>
     <my:CustomGrid Grid.Row="0"
                   x:Name="clubsGrid" 
                   AutoGenerateColumns="False"
                   GroupRenderMode="Flat"
                   Margin="5">
         <my:CustomGrid.Columns>
             <telerik:GridViewDataColumn DataMemberBinding="{Binding Name}"/>
             <telerik:GridViewDataColumn DataMemberBinding="{Binding Established}" Header="Est." DataFormatString="{}{0:yyyy}"/>
             <telerik:GridViewDataColumn DataMemberBinding="{Binding StadiumCapacity}" Header="Stadium" DataFormatString="{}{0:N0}"/>
         </my:CustomGrid.Columns>
     </my:CustomGrid>
 </Grid>

Thanks.
Evangelista
Top achievements
Rank 1
Iron
 asked on 20 Dec 2023
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?