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
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
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.
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!
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.
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
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
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>