Ejemplo n.º 1
0
        public new void DrawItem(GoogleDesktopDisplayTarget target,
                                 Int32 dc,
                                 ref GoogleDesktopDisplayLib.tagRECT bounds)
        {
            throw new NotImplementedException();
            // Comment above and uncomment the code below to do custom drawing on your item.

            /*
             * Graphics g = Graphics.FromHdc((IntPtr)dc);
             * g.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
             * Rectangle rc = new Rectangle(bounds.left, bounds.top,
             * bounds.right - bounds.left, bounds.bottom - bounds.top);
             * Font font = new Font("Tahoma", 8);
             * Brush brush = Brushes.Black;
             * g.DrawString(heading, font, brush, rc);
             */
        }
Ejemplo n.º 2
0
 public new void GetIsTooltipRequired(GoogleDesktopDisplayTarget target,
                                      Int32 dc,
                                      ref GoogleDesktopDisplayLib.tagRECT bounds, out bool isRequired)
 {
     throw new NotImplementedException();
 }