Hello
Below I have listed the method to reproduce the problem.
Open the Telerik WPF Controls Examples > ScheduleView > Features > Configurator.
Check "Snap Appointments" and set "Day Start Time" to for example 08:00.
Start dragging an appointment to start time 08:00, nothing strange will happen, when you now drag the appointment a little bit higher (so the start time will be earlier) the appointment disappears.
I assume this is a bug?
Can you help on this? (maybe a workaround?)
Thanks!
public partial class MainWindow : RadWindow { public MainWindow() { InitializeComponent(); RadWindowHelper windowHelper = new RadWindowHelper(); windowHelper.TaskBarDisplayed += new EventHandler(windowHelper_TaskBarDisplayed); windowHelper.ShowWindowInTaskBar(); } void windowHelper_TaskBarDisplayed(object sender, EventArgs e) { this.Show(); this.WindowState = WindowState.Maximized; this.BringToFront(); var window = this.ParentOfType<Window>(); window.ShowInTaskbar = true; window.Title = "My RadWindow"; } } public class RadWindowHelper { public event EventHandler TaskBarDisplayed; public void ShowWindowInTaskBar() { if (this.TaskBarDisplayed != null) this.TaskBarDisplayed(this, new EventArgs()); } }
I am using a horizontal path for the radcarousel panels. There are 3 panels in the carousel ItemsPerPage="3". The middle panel is the focused panel. Is there a way to specify spacing between central panel and panels on either side.
Thanks in advance
YK

This is just one RadGridView and colums are repeated. How can we do this with wpf RadGridView
Thanks,