Posted 09 Aug 2012 Link to this post
public
partial
class
RadRibbonForm1 : Telerik.WinControls.UI.RadRibbonForm
{
private
VistaApi.Margins marg;
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);
}
void
RadRibbonForm1_Load(
object
sender, EventArgs e)
Color c = Color.FromArgb(255, 221, 220, 220);
.TransparencyKey = c;
panLateral.BackColor = c;
Posted 14 Aug 2012 Link to this post
Posted 15 Aug 2012 Link to this post