Bonsoir,
C#, .Net, WinForm
J'ai une
Code : Sélectionner tout - Visualiser dans une fenêtre à part
class SplitCont_AllWizIntPag : SplitContainer
Dans le panneau Panel2, je voudrais intégrer un objet de Layout Manager de tiers.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
// Inherited Panel2 is the top-level pane to which BorderLayout is to
// be added and which also resizes as the Form is resized.
// System.Windows.Forms.Control    // System.Drawing.Rectangle  // System.Layout.ILayoutManager
// Gets the rectangle that represents the client area of the control.
this.controlPane = new ResizeablePane(this, Rectangle, new BorderLayout());
Comment coder pour qu'au 'Rectangle' corresponde Panel2 de mon SplitContainer (= this) ?

Merci !