У меня есть приложение winform, у которого есть tabcontrols глубиной в 3 слоя. Я динамически раскрашиваю вкладки с помощью приведенного ниже класса. Когда это идет, чтобы окрасить встроенный tabcontrol, это передает подгонку.
A first chance exception of type 'System.ComponentModel.Win32Exception' occurred in System.Windows.Forms.dll
Мне нужно сделать что-то другое для тех? Если я закомментирую вызовы встроенных форм для tabRenderer, то я не получаю эти ошибки. Правильно ли я избавляюсь от объекта TabRenderer?
Может быть, это что-то совсем другое? Как я встраиваю элементы управления вкладками?
Пример того, как выглядит моя программа в данный момент, приведен здесь ->
http://lh6.ggpht.com/_DqVwi_JXyS0/Sf8EI0ETYrI/AAAAAAAABhI/pmAhozErubo/s288/MATRIXUIExample.JPGFrom
DevFiles
Как видите, есть 3 слоя элементов управления вкладками. Это происходит дважды в программе, и оба вызывают упомянутую ошибку. Всего 6 вызовов tabRenderer, так как имеется 5 элементов управления вкладками. 1 верхний уровень, 3 второй уровень и 2 третий уровень.
Код, используемый для окраски вкладок:
public class psTabRenderer
{
private TabControl _tabControl;
private Color _fillColor;
private Color _selectedFillColor;
private Color _textColor;
private Color _selectedTextColor;
public psTabRenderer(TabControl tabControl, Color fillColor, Color selectedFillColor, Color textColor, Color selectedTextColor)
{
_tabControl = tabControl;
_fillColor = fillColor;
_selectedFillColor = selectedFillColor;
_textColor = textColor;
_selectedTextColor = selectedTextColor;
_tabControl.DrawMode = TabDrawMode.OwnerDrawFixed;
_tabControl.DrawItem += TabControlDrawItem;
}
private void TabControlDrawItem(object sender, DrawItemEventArgs e)
{
TabPage currentTab = _tabControl.TabPages[e.Index];
Rectangle itemRect = _tabControl.GetTabRect(e.Index);
var fillBrush = new SolidBrush(_fillColor);
var textBrush = new SolidBrush(_textColor);
var sf = new StringFormat
{
Alignment = StringAlignment.Center,
LineAlignment = StringAlignment.Center
};
//If we are currently painting the Selected TabItem we'll
//change the brush colors and inflate the rectangle.
if (Convert.ToBoolean(e.State & DrawItemState.Selected))
{
fillBrush.Color = _selectedFillColor;
textBrush.Color = _selectedTextColor;
itemRect.Inflate(2, 2);
}
//Set up rotation for left and right aligned tabs
if (_tabControl.Alignment == TabAlignment.Left || _tabControl.Alignment == TabAlignment.Right)
{
float rotateAngle = 90;
if (_tabControl.Alignment == TabAlignment.Left)
rotateAngle = 270;
var cp = new PointF(itemRect.Left + (itemRect.Width / 2), itemRect.Top + (itemRect.Height / 2));
e.Graphics.TranslateTransform(cp.X, cp.Y);
e.Graphics.RotateTransform(rotateAngle);
itemRect = new Rectangle(-(itemRect.Height / 2), -(itemRect.Width / 2), itemRect.Height, itemRect.Width);
}
//Next we'll paint the TabItem with our Fill Brush
e.Graphics.FillRectangle(fillBrush, itemRect);
//Now draw the text.
e.Graphics.DrawString(currentTab.Text, e.Font, textBrush, (RectangleF)itemRect, sf);
//Reset any Graphics rotation
e.Graphics.ResetTransform();
//Finally, we should Dispose of our brushes.
fillBrush.Dispose();
textBrush.Dispose();
}
}
И вот как я это называю:
private void frmMCPEmployment_Load(object sender, EventArgs e)
{
FormPaint();
}
public void FormPaint()
{
// ToDo: This call to the Tab Renderer is throwing a Win32 "Error Creating Window Handle"
new psTabRenderer(tclEmployment, Color.LightSteelBlue, Color.Khaki, Color.Black, Color.Black);
}