Ejemplo n.º 1
0
        public void DrawHeaderText(Graphics dc, Rectangle cellRect, TreeListColumn column, TreeList.TextFormatting format)
        {
            Color           color = format.ForeColor;
            TextFormatFlags flags = TextFormatFlags.EndEllipsis | format.GetFormattingFlags();

            TextRenderer.DrawText(dc, column.Caption, column.Font, cellRect, color, flags);
        }
Ejemplo n.º 2
0
        public virtual void PaintCellText(Graphics dc,
                                          Rectangle cellRect,
                                          Node node,
                                          TreeListColumn column,
                                          TreeList.TextFormatting format,
                                          object data)
        {
            if (data != null)
            {
                cellRect = AdjustRectangle(cellRect, format.Padding);
                //dc.DrawRectangle(Pens.Black, cellRect);

                Color color = format.ForeColor;
                if (node.ForeColor != Color.Transparent)
                {
                    color = node.ForeColor;
                }
                if (m_owner.FocusedNode == node && Application.RenderWithVisualStyles == false && m_owner.Focused)
                {
                    color = SystemColors.HighlightText;
                }
                TextFormatFlags flags = TextFormatFlags.EndEllipsis | format.GetFormattingFlags();

                Font f           = m_owner.Font;
                Font disposefont = null;

                if (node.Bold && node.Italic)
                {
                    disposefont = f = new Font(f, FontStyle.Bold | FontStyle.Italic);
                }
                else if (node.Bold)
                {
                    disposefont = f = new Font(f, FontStyle.Bold);
                }
                else if (node.Italic)
                {
                    disposefont = f = new Font(f, FontStyle.Italic);
                }

                string datastring = "";

                if (m_converter != null)
                {
                    datastring = m_converter(column, data);
                }
                else
                {
                    datastring = data.ToString();
                }

                TextRenderer.DrawText(dc, datastring, f, cellRect, color, flags);

                if (disposefont != null)
                {
                    disposefont.Dispose();
                }
            }
        }