Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
How to control opacity of a child form of "tabbedmdimanager" runtime?
posted

hi.....

i'm using "NetAdvantage for .NET 2008 Vol. 3 CLR 2.0" & "Visual Studio 2005".

i have a mdi parent form with a "ultratabbedmdimanager". i just want to change the opacity of the child forms in runtime. is it possible?

i ve already tried that :

private void toolStripButton10_Click(object sender, EventArgs e)
        {
           this.Opacity = Convert.ToDouble(textBox1.Text);
        }

AND

private void ultraTabbedMdiManager1_InitializeTab(object sender, MdiTabEventArgs e)
        {
            e.Tab.Form.Opacity = Convert.ToDouble(textBox1.Text);
        }

but no one is working. pls help me.

>>> what i want actually is to make the child form area transparent / faded in a tabbedmdimanager. <<<

Parents
No Data
Reply
  • 4032
    Offline posted

    Hello,

    I have the same problem (Version 2009.2). Even setting the opacity at designtime of my form, if showed under the tabbed mdi manager as mdi window, opacity is not showed.

    Is there a solution for this post / problem elsewhere?

    I want to set opacity of the mdi form to a lower value than 1.0 while showing a modal form over the mdi form.

    MdiManager.ActiveTab.Form.Opacity = 0.75 but this does not work.

    Thanks for any help.

    Regards

    Markus

Children
No Data