i'm having problem whit RadRibbon and Aeroglass.
please look the images.
whit ribbonform and winforms
using this code: (Visual Studio 2010 - c#)
thank
please look the images.
whit ribbonform and winforms
using this code: (Visual Studio 2010 - c#)
public
partial
class
RadRibbonForm1 : Telerik.WinControls.UI.RadRibbonForm
{
private
VistaApi.Margins marg;
public
RadRibbonForm1()
{
InitializeComponent();
marg =
new
VistaApi.Margins();
marg.Top = 0;
marg.Left = 0;
marg.Right = panel1.Width;
marg.Bottom = panel1.Height;
VistaApi.DwmExtendFrameIntoClientArea(
this
.Handle,
ref
marg);
}
private
void
RadRibbonForm1_Load(
object
sender, EventArgs e)
{
Color c = Color.FromArgb(255, 221, 220, 220);
this
.TransparencyKey = c;
panLateral.BackColor = c;
}
}
thank