Window Form, Panel, can't set ZOrder at run time/design time

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Adil Akram

    Window Form, Panel, can't set ZOrder at run time/design time

    I'm using VS 2005, .net 2.0 for a desktop application (Window Form app).

    I can't set ZOrder of Panel control neither at design time by toolbar/menu
    command "Bring to Front"/"Sent to Back" nor at run time by calling
    BringToFront method of panel. And Panel control doesn't support SetTopLevel
    method etc. I tried this while Dock=Fill and Dock=None but its not working at
    all.

    Please tell me how can I change Panel's ZOrder specially at run time, I have
    to show different panels at different times. Is there any way to do this or I
    have to set their Visible to true/false to achieve this.
  • Marc Gravell

    #2
    Re: Window Form, Panel, can't set ZOrder at run time/design time

    Seems to work fine for me (below)... what are you doing differently?
    But yes - changing the visibility is an option, and it sounds like what you
    are doing is very similar to the TabPage implementation too...

    using System;
    using System.Windows. Forms;
    class Program
    {
    static void Main()
    {
    using (Form form = new Form()) {
    for(int i = 0; i < 5; i++) {
    Panel p = new Panel();
    Button b = new Button();
    b.Click += delegate {
    p.SendToBack();
    };
    b.Text = "Panel " + i.ToString();
    p.Dock = DockStyle.Fill;
    p.Controls.Add( b);
    form.Controls.A dd(p);
    }
    Application.Run (form);
    }

    }
    }


    Comment

    • Adil Akram

      #3
      Re: Window Form, Panel, can't set ZOrder at run time/design time

      Marc,
      The only thing I'm doing different is you are creating it at run and I added
      it at design time to the form and that is not any different in .net because
      designer also adds the same instantiation code. So, the only difference is
      your controls creation code is in Main() method and mine is in Form's
      constructor.

      I checked it again, its still not working neither at design time, nor at run
      time even I checked the SendToBack method of panel at run time but its not
      working. I can do it with Visible but I have 4-5 panels up and down and I
      have to take of visibility of all panels.

      Have you executed your code in .net 2.0?

      regards,
      Adil



      "Marc Gravell" wrote:
      Seems to work fine for me (below)... what are you doing differently?
      But yes - changing the visibility is an option, and it sounds like what you
      are doing is very similar to the TabPage implementation too...
      >
      using System;
      using System.Windows. Forms;
      class Program
      {
      static void Main()
      {
      using (Form form = new Form()) {
      for(int i = 0; i < 5; i++) {
      Panel p = new Panel();
      Button b = new Button();
      b.Click += delegate {
      p.SendToBack();
      };
      b.Text = "Panel " + i.ToString();
      p.Dock = DockStyle.Fill;
      p.Controls.Add( b);
      form.Controls.A dd(p);
      }
      Application.Run (form);
      }
      >
      }
      }
      >
      >
      >

      Comment

      • Adil Akram

        #4
        Re: Window Form, Panel, can't set ZOrder at run time/design time

        Marc,
        Another thing different I'm doing, I forget to tell you is I put my panel
        controls inside the SplitContainer control's panel.

        regards,
        Adil

        "Marc Gravell" wrote:
        Seems to work fine for me (below)... what are you doing differently?
        But yes - changing the visibility is an option, and it sounds like what you
        are doing is very similar to the TabPage implementation too...
        >
        using System;
        using System.Windows. Forms;
        class Program
        {
        static void Main()
        {
        using (Form form = new Form()) {
        for(int i = 0; i < 5; i++) {
        Panel p = new Panel();
        Button b = new Button();
        b.Click += delegate {
        p.SendToBack();
        };
        b.Text = "Panel " + i.ToString();
        p.Dock = DockStyle.Fill;
        p.Controls.Add( b);
        form.Controls.A dd(p);
        }
        Application.Run (form);
        }
        >
        }
        }
        >
        >
        >

        Comment

        • Adil Akram

          #5
          Re: Window Form, Panel, can't set ZOrder at run time/design time

          Marc,
          I tried placing several panels in same project on another form and their
          BringToFront/SendToBack working both at design time and runtime. I think the
          SplitterContain er is the real culprit and prevents panels to work properly.

          Have you any solution for the panels inside SplitterContain er to work or
          I'll have to use Visible property.

          regards,
          Adil

          "Marc Gravell" wrote:
          Seems to work fine for me (below)... what are you doing differently?
          But yes - changing the visibility is an option, and it sounds like what you
          are doing is very similar to the TabPage implementation too...
          >
          using System;
          using System.Windows. Forms;
          class Program
          {
          static void Main()
          {
          using (Form form = new Form()) {
          for(int i = 0; i < 5; i++) {
          Panel p = new Panel();
          Button b = new Button();
          b.Click += delegate {
          p.SendToBack();
          };
          b.Text = "Panel " + i.ToString();
          p.Dock = DockStyle.Fill;
          p.Controls.Add( b);
          form.Controls.A dd(p);
          }
          Application.Run (form);
          }
          >
          }
          }
          >
          >
          >

          Comment

          • Marc Gravell

            #6
            Re: Window Form, Panel, can't set ZOrder at run time/design time

            Have you executed your code in .net 2.0?
            Yes

            Marc


            Comment

            • Marc Gravell

              #7
              Re: Window Form, Panel, can't set ZOrder at run time/design time

              Still works fine for me... Have you any code that demonstrates this?

              using System;
              using System.Windows. Forms;
              using System.Drawing;
              class Program
              {
              static void Main()
              {
              using (Form form = new Form())
              using (SplitContainer sc = new SplitContainer( ))
              {
              sc.Panel1.BackC olor = Color.Red;
              sc.Panel2.BackC olor = Color.Blue;
              AddPanels(sc.Pa nel1);
              AddPanels(sc.Pa nel2);
              sc.Dock = DockStyle.Fill;
              form.Controls.A dd(sc);
              Application.Run (form);
              }

              }

              private static void AddPanels(Split terPanel panel)
              {
              for (int i = 0; i < 5; i++)
              {
              Panel p = new Panel();
              Button b = new Button();
              b.Location = new System.Drawing. Point(10 * i, 10 * i);
              b.Click += delegate
              {
              p.SendToBack();
              };
              b.Text = "Panel " + i.ToString();
              p.Dock = DockStyle.Fill;
              p.Controls.Add( b);
              panel.Controls. Add(p);
              }
              }
              }

              Marc


              Comment

              • Chris Dunaway

                #8
                Re: Window Form, Panel, can't set ZOrder at run time/design time

                Adil Akram wrote:
                Marc,
                I tried placing several panels in same project on another form and their
                BringToFront/SendToBack working both at design time and runtime. I think the
                SplitterContain er is the real culprit and prevents panels to work properly.
                >
                Have you any solution for the panels inside SplitterContain er to work or
                I'll have to use Visible property.
                I gather you are trying to have one or more panels inside a
                SplitterContain er and then selectively show and hide them?

                Rather than using panels, use UserControls. You can design them
                separately and show them inside the panels of the SplitterContain er.

                You can also do this using forms instead of UserControls.

                Chris

                Comment

                • Adil Akram

                  #9
                  Re: Window Form, Panel, can't set ZOrder at run time/design time

                  Marc,
                  Thank you very much for your follow up. I again missed to mention that I'm
                  using a SplitterContain er inside another SplitterContain er, first one
                  (Parent) has vertical orientation and 2nd (Child) has horizontal orientation.
                  I just like to mention if it may help to find some clue.

                  But even with this addition to your code, its still working properly and its
                  annoying me so much that why it is not working for me not even at design
                  time. My project is currently not so big, it has a single form only and I
                  check it out and find nothing different I'm doing in it.

                  Here's your coding with addition of another child SplitterContain er and its
                  working.

                  using System;
                  using System.Windows. Forms;
                  using System.Drawing;
                  class Program
                  {
                  static void Main()
                  {
                  using (Form form = new Form())
                  using (SplitContainer sc = new SplitContainer( ))
                  {
                  SplitContainer scl = new SplitContainer( );
                  scl.Orientation = Orientation.Hor izontal;

                  scl.Panel1.Back Color = Color.Red;
                  scl.Panel2.Back Color = Color.Blue;
                  AddPanels(scl.P anel1);
                  AddPanels(scl.P anel2);
                  sc.Dock = DockStyle.Fill;
                  scl.Dock = DockStyle.Fill;
                  sc.Panel1.Contr ols.Add(scl);
                  form.Controls.A dd(sc);
                  Application.Run (form);
                  }

                  }

                  private static void AddPanels(Split terPanel panel)
                  {
                  for (int i = 0; i < 5; i++)
                  {
                  Panel p = new Panel();
                  Button b = new Button();
                  b.Location = new System.Drawing. Point(10 * i, 10 * i);
                  b.Click += delegate
                  {
                  p.SendToBack();
                  };
                  b.Text = "Panel " + i.ToString();
                  p.Dock = DockStyle.Fill;
                  p.Controls.Add( b);
                  panel.Controls. Add(p);
                  }
                  }
                  }


                  regards,
                  Adil



                  "Chris Dunaway" wrote:
                  Adil Akram wrote:
                  Marc,
                  I tried placing several panels in same project on another form and their
                  BringToFront/SendToBack working both at design time and runtime. I think the
                  SplitterContain er is the real culprit and prevents panels to work properly.

                  Have you any solution for the panels inside SplitterContain er to work or
                  I'll have to use Visible property.
                  >
                  I gather you are trying to have one or more panels inside a
                  SplitterContain er and then selectively show and hide them?
                  >
                  Rather than using panels, use UserControls. You can design them
                  separately and show them inside the panels of the SplitterContain er.
                  >
                  You can also do this using forms instead of UserControls.
                  >
                  Chris
                  >
                  >

                  Comment

                  • Adil Akram

                    #10
                    Re: Window Form, Panel, can't set ZOrder at run time/design time

                    Chris,
                    Thank you for your assistance and suggesting alternatives.

                    I have another alternate solution to use the Visible property of Panels to
                    show hide but it requires to do more management/coding to set visible false
                    for one and setting true for other.

                    I would just like to know that is there any known bug/design flaw in panels
                    ZOrder as in my case its not working not even at design time or is there
                    something I'm doing wrong?

                    regards,
                    Adil




                    "Chris Dunaway" wrote:
                    Adil Akram wrote:
                    Marc,
                    I tried placing several panels in same project on another form and their
                    BringToFront/SendToBack working both at design time and runtime. I think the
                    SplitterContain er is the real culprit and prevents panels to work properly.

                    Have you any solution for the panels inside SplitterContain er to work or
                    I'll have to use Visible property.
                    >
                    I gather you are trying to have one or more panels inside a
                    SplitterContain er and then selectively show and hide them?
                    >
                    Rather than using panels, use UserControls. You can design them
                    separately and show them inside the panels of the SplitterContain er.
                    >
                    You can also do this using forms instead of UserControls.
                    >
                    Chris
                    >
                    >

                    Comment

                    • Adil Akram

                      #11
                      Re: Window Form, Panel, can't set ZOrder at run time/design time

                      Marc,
                      Thanks for staying to resolve the problem. I indentified the problem,
                      actually I while dropping panels on form I dropped one on top of other that
                      causes one to be child of other that is why its not coming front of its
                      parent.
                      regards,
                      Adil

                      "Marc Gravell" wrote:
                      Still works fine for me... Have you any code that demonstrates this?
                      >
                      using System;
                      using System.Windows. Forms;
                      using System.Drawing;
                      class Program
                      {
                      static void Main()
                      {
                      using (Form form = new Form())
                      using (SplitContainer sc = new SplitContainer( ))
                      {
                      sc.Panel1.BackC olor = Color.Red;
                      sc.Panel2.BackC olor = Color.Blue;
                      AddPanels(sc.Pa nel1);
                      AddPanels(sc.Pa nel2);
                      sc.Dock = DockStyle.Fill;
                      form.Controls.A dd(sc);
                      Application.Run (form);
                      }
                      >
                      }
                      >
                      private static void AddPanels(Split terPanel panel)
                      {
                      for (int i = 0; i < 5; i++)
                      {
                      Panel p = new Panel();
                      Button b = new Button();
                      b.Location = new System.Drawing. Point(10 * i, 10 * i);
                      b.Click += delegate
                      {
                      p.SendToBack();
                      };
                      b.Text = "Panel " + i.ToString();
                      p.Dock = DockStyle.Fill;
                      p.Controls.Add( b);
                      panel.Controls. Add(p);
                      }
                      }
                      }
                      >
                      Marc
                      >
                      >
                      >

                      Comment

                      • Marc Gravell

                        #12
                        Re: Window Form, Panel, can't set ZOrder at run time/design time

                        Glad you resolved it.

                        As a future guide, if you see this again have a look at the document outline
                        ([Ctrl]+[Alt]+T) - makes it easy to see what nests where.

                        Marc


                        Comment

                        • Adil Akram

                          #13
                          Re: Window Form, Panel, can't set ZOrder at run time/design time

                          Marc,
                          Thanks its very helpful to view controls outline.

                          regards,
                          Adil

                          "Marc Gravell" wrote:
                          Glad you resolved it.
                          >
                          As a future guide, if you see this again have a look at the document outline
                          ([Ctrl]+[Alt]+T) - makes it easy to see what nests where.
                          >
                          Marc
                          >
                          >
                          >

                          Comment

                          Working...