This is a migrated thread and some comments may be shown as answers.

RadDock and DocumentWindow problem

1 Answer 62 Views
Dock
This is a migrated thread and some comments may be shown as answers.
FrancoP
Top achievements
Rank 1
FrancoP asked on 06 Nov 2009, 05:23 PM

Good morning.

            I have a problem with the DocumentWindow in your RadDock class. I downloaded your RadControls for WinForms Q3 2009 release. I did the following steps:

 

  1. New project, WindowsForm Application (with Visual Basic 2008 Express Edition).
  2. Insert a RadDock.
  3. Insert a RadMenu, one item only (“Add”).
  4. Here is the code in the form:

 

Imports Telerik.WinControls.UI.Docking

 

Public Class Form1

 

  Private Sub RadMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadMenuItem1.Click

    RadDock1.Visible = False

 

    Dim docW As DocumentWindow = New DocumentWindow("Test")

    Dim pnl As New Panel

    pnl.BorderStyle = BorderStyle.FixedSingle

    pnl.Dock = DockStyle.Fill

    docW.Controls.Add(pnl)

    RadDock1.AddDocument(docW)

 

    RadDock1.Visible = True

  End Sub

End Class

 

I programmatically insert a new DocumentWindow with a Panel in it. If you omit instruction “RadDock1.Visible = False”, all is ok, otherwise the panel will overlap the tab. If you click the small down arrow on the right (it’s almost invisible) and select the window (Test), all returns ok.

In my application, obviously much more complicated, I need to make invisible the RadDock during certain operations. What can I do to solve this problem?

 

Thank you.

1 Answer, 1 is accepted

Sort by
0
Georgi
Telerik team
answered on 11 Nov 2009, 12:53 PM
Hello FrancoP,

Please, find an answer to your question in this thread


Best wishes,
Georgi
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Dock
Asked by
FrancoP
Top achievements
Rank 1
Answers by
Georgi
Telerik team
Share this question
or