Hello everyone.
When I run the program, I double-click documentwindow1 in the RadDock control; documentwindow1 pops up, how can I lock documentwindow1 to keep it from popping up?
As shown in the figure1.

Hi,
Can you take a look the Demo UI program for the winform docking,
I save the layout as shown in "2018-12-28 15_05_20-Form1.png".
Then i load the saved layout, it is shown in "2018-12-28 15_05_52-Form1.png".
The floating green window is resized to a bigger size, can you take a look how to make it consistent after the layout is loaded ?
Thanks

HI
I have met a problem about WinForm ActiveControl in Telerik Control - RadDock.
Reintroduce steps :
1.Place TextBox1, TextBox2 on Form.
2a.Place a RadDock on Form.
2b.RadDock task - Dock New Window to Left - toolWindow1
2c.RadDock task - Add Tabbed Document - documentWindow1
3a.Place TextBox3 on toolWindow1.
3b.Place TextBox4 on documentWindow1.
Run the application and test the ActiveControl state (focus the control by control),
ActiveControl of TextBox1 and TextBox2 is CORRECT,
but ActiveControl of TextBox3 and TextBox4 was WRONG.
(see attachment - Telerik ActiveControl err1.png).
Why the ActiveControl are not TextBox3/TextBox4 ?
And Is there have any solution to fix that ?
Code :
private void Timer1_Tick(object sender, EventArgs e)
{
Control CurrentActiveControl = ActiveControl;
string sActiveControlName, sActiveControlString;
//
sActiveControlName = (CurrentActiveControl != null) ? CurrentActiveControl.Name : "(unknown)";
sActiveControlString = (CurrentActiveControl != null) ? CurrentActiveControl.ToString() : "(none)";
//
listBox1.Items.Insert(0, DateTime.Now.ToString("hh:mm:ss - ") + sActiveControlName + ", " + sActiveControlString);
}
*Visual Studio 2015 Enterprise Update 3
*Telerik UI for WinForms R1 2018
Best regards
Chris

I'm not sure the exact approach, but I'm looking to design a calendar where it imports multiple iCal files and displays schedule in a single calendar. Each ics file would represent a different entity, and I would want to use custom colors to block events for each.


The RadTextBoxControl has a "ShowClearButton" property where is True, at the far right end there'll be an "X" button inside the textbox to clear the text.
If the textbox's Click event is hooked to a function and the user clicks on the "X" button, then the "X" will do nothing and the Click event is triggered.
I believe that when ShowClearButton is True, that portion of the textbox which contains the "X" button should not trigger the Click or DoubleClick events of the textbox.


hi.
how can i do to insert the title of Series on top of line in ScatterLineSeries.

Hello,
I'm testing RadPanorama for Windows Forms
I love the zooming feature (although having the ability to set an initial zoom value depending on the screen resolution would make it better), however I can't find how to make the tile text bigger.
When I go to the tile's properties, then font and make the font bigger, it automatically changes back to 'Segoe UI Light, 16pt'.
I then tried doing the same on the TileGroupElement itself, but its font always automatically becomes 'Segoe UI Light, 20.25pt'
I finally tried to change the font of the RadPanorama as a whole, and although the value does change, it doesn't have any effect on the tiles.
So how do I go about doing that? Thank you in advance :)
Hello,
So I have a form with a RadDock control which has a DocumentContainer which has a DocumentTabStrip on which I had created 4 DocumentsWindows
I wanted to do is so that the Main DocumentWindow (dwApplications) will have buttons that will make the other 3 DocumentWindows appear.
Now on the Form Designer I right-clicked and pushed "Close" on the 3 other DocumentWindows that I wanted to make them appear only if a button was pushed.
However, I fail to bring them back either on the Designer or in runtime.
On the designer I just can't see to find those document windows, not in the usual form designer nor in the Advanced Layout Designer
As for runtime, I thought that this would make them appear, but it actually doesn't
dwLoadEmployees.Show()dwLoadEmployees.Select()
What can I do?
