I'm trying to intercept a triple-click in a textbox control. I've tried this test code with breakpoints but only a single click is trapped. My goal is to override the double-click and triple-click behaviour to highlight text in custom ways. I had double-click working by handling the DoubleClick event and doing my stuff in there, and then also handling SelectionChanging to override the default behaviour there (or my custom highlighting would be still overridden by the default double-click handling, which is to select the entire current line).
private void TxtboxOnMouseClick(object sender, MouseEventArgs mouseEventArgs){ var clicks = mouseEventArgs.Clicks; switch (clicks) { case 1: break; case 2: break; case 3: break; }}
i want to customise Scheduler's Ruler like Attached Image
can any one tell me set start time and end time
and
how to set gap between two time?

Hi
My application has three documentWindows (image 1) and window3 can float (other two windows cannot float and are pinned). None of the them can be hidden or closed or autohide. When user tries to re-dock the floating window3, the docking guides show all directions (Image 2), I want the user to be able to dock in center (fill) position or to the right of window2 only. User cannot dock to any side or center of window1.
1.User should only be able to dock window3 side by side or as vertically tabbed group to window2. window3 cannot enter the container of window1 in any case.
2. When the user clicks on close button of floating window3, it should re-dock itself as tabbed document in the layout configuration the user last had; meaning if user had window2 and window3 tabbed side by side (traditional tabbed view), it should redock back to center (fill) position and if window3 was to the right of window2 (as shown in Image1), then likewise.
Thanks.

I've been searching and searching lol - the nested properties are impressive! Somewhere in side a RadDropDownListEditor there's a ListElement where I can change the back color and border color and size...but after several hours, this eludes me.
Can someone show me how to access the ListElement of a RadDropDownListEditor please :) THANK YOU!!!
-C

Hi folks :)
Is there any way to tell a specific column inside a grid to "Stretch to Fill" so it completely fills the leftover space in a grid where the column widths added up do not equal the total width of the grid control?
Hard to describe so out comes Photoshop so I can create a couple of images to demonstrate what I'm talking about:
The first image shows the grid "as-is" the second images shows the effect I'm looking for: The "Description" column would stretch to fill all remaining space.
Any help would be very much appreciated!
-Curtis

When I am using the CheckState=TriStateMode.Indeterminate, all works fine when I check and uncheck.
But when I call CollapseAll or ExpandAll, all parents that have a Indeterminate check get removed.
This is easily replicable. Is there a workaround?

Hi,
I think I have found a problem with the drag and drop behavior.
I have implemented the drag and drop as explained in the documentation, but when I test with a touch screen, it doesn't work.
I think it's because only OnMouseDownLeft(MouseEventArgs e) function is overrided in RowSelectionGridBehavior class, but can't find a way to handle that.
Hi,
How can I hide PivotAggregateDescriptorContainer in code? Is it something like ShowFilterArea property, but for Aggregates area? Can't find one...
Thanks
Alex