Рисование TextBox в расширенной стеклянной рамке без WPF - PullRequest
0 голосов
/ 30 мая 2010

Я пытаюсь нарисовать TextBox на расширенной стеклянной рамке моей формы. Я не буду описывать эту технику, она хорошо известна. Вот пример для тех, кто не слышал об этом: http://www.danielmoth.com/Blog/Vista-Glass-In-C.aspx

Дело в том, что рисовать поверх этой стеклянной рамы сложно. Поскольку черный цвет считается цветом 0-альфа, все, что черный, исчезает.

Есть, очевидно, способы решения этой проблемы: рисование сложных форм GDI + не влияет на эту альфа-ность. Например, этот код можно использовать для рисования метки на стекле (примечание: GraphicsPath используется вместо DrawString для решения ужасной проблемы ClearType):

public class GlassLabel : Control
{
    public GlassLabel()
    {
        this.BackColor = Color.Black;
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        GraphicsPath font = new GraphicsPath();

        font.AddString(
            this.Text,
            this.Font.FontFamily,
            (int)this.Font.Style,
            this.Font.Size,
            Point.Empty,
            StringFormat.GenericDefault);

        e.Graphics.SmoothingMode = SmoothingMode.HighQuality;
        e.Graphics.FillPath(new SolidBrush(this.ForeColor), font);
    }
}

Аналогичным образом, такой подход можно использовать для создания контейнера на стеклянной поверхности. Обратите внимание на использование многоугольников вместо прямоугольника - при использовании прямоугольника его черные части рассматриваются как альфа.

public class GlassPanel : Panel
{
    public GlassPanel()
    {
        this.BackColor = Color.Black;
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        Point[] area = new Point[]
            {
                new Point(0, 1),
                new Point(1, 0),
                new Point(this.Width - 2, 0),
                new Point(this.Width - 1, 1),
                new Point(this.Width -1, this.Height - 2),
                new Point(this.Width -2, this.Height-1),
                new Point(1, this.Height -1),
                new Point(0, this.Height - 2)
            };

        Point[] inArea = new Point[]
            {
                new Point(1, 1),
                new Point(this.Width - 1, 1),
                new Point(this.Width - 1, this.Height - 1),
                new Point(this.Width - 1, this.Height - 1),
                new Point(1, this.Height - 1)
            };

        e.Graphics.FillPolygon(new SolidBrush(Color.FromArgb(240, 240, 240)), inArea);
        e.Graphics.DrawPolygon(new Pen(Color.FromArgb(55, 0, 0, 0)), area);

        base.OnPaint(e);
    }
}

Теперь моя проблема: как я могу нарисовать TextBox? После долгих поисков я предложил следующие решения:

  • Подклассы метода TextBox OnPaint. Это возможно , хотя я не мог заставить его работать должным образом. Это должно включать рисование некоторых волшебных вещей, которые я пока не знаю, как делать.
  • Создание своего собственного TextBox, возможно на TextBoxBase. Если у кого-нибудь есть хороших , действительных и рабочих примеров, и он считает, что это может быть хорошим общим решением, скажите мне.
  • Использование BufferedPaintSetAlpha. (http://msdn.microsoft.com/en-us/library/ms649805.aspx). Недостатки этого метода могут заключаться в том, что углы текстового поля могут выглядеть странно, но я могу с этим смириться. Если кто-нибудь знает, как правильно реализовать этот метод из объекта Graphics, скажите, пожалуйста. I Лично нет, но это пока лучшее решение. Честно говоря, я нашел отличную статью на C ++, но мне лень ее преобразовывать. http://weblogs.asp.net/kennykerr/archive/2007/01/23/controls-and-the-desktop-window-manager.aspx

Примечание. Если мне когда-либо удастся использовать методы BufferedPaint, я клянусь, что я сделаю простую DLL со всеми общими элементами управления Windows Forms, которые можно рисовать на стекле.

1 Ответ

0 голосов
/ 30 мая 2010

Я потратил некоторое время на эту тему некоторое время назад. В основном вам нужно прозрачное текстовое поле. Мой первоначальный подход заключался в использовании codeproject AlphaBlendTextBox - прозрачного / полупрозрачного текстового поля для .NET . Но у меня было несколько трудных для решения проблем с этим контролем. Через некоторое время я нашел необходимое решение, оно будет работать только на Windows XP и выше. Кроме того, чтобы этот элемент управления вел себя как однострочное текстовое поле, установите RichTextBox.Multiline в false.

// Source:
// http://www.dotnetjunkies.com/WebLog/johnwood/archive/2006/07/04/transparent_richtextbox.aspx

// It seems there are 4 versions of the RichEdit control out there - when I'm talking about the 
// RichEdit control, I'm talking about the C DLL that either comes with Windows or some version 
// of Office. The files are named either RICHEDXX.DLL (XX is the version number), or MSFTEDIT.DLL 
// and they're in the System32 folder.

// .Net RichTextBox control is bound to version 2. The biggest problem with this version (at least 
// for me) is that it does not render properly if you try to make the window transparent. Later versions, 
// however, do.

// We can fix that. If you create a control deriving from the original RichTextBox control, but overriding 
// the CreateParams property, you can put in a new Windows class name (this is the window class name, 
// nothing to do with classes in the C# sense). This effectively gives us a free upgrade. When the .Net 
// RichTextBox control instantiates, it will now use the latest RichEdit control and not the old, archaic, 
// version 2.

// There are other benefits too - version 3 and beyond of the RichEdit control support quite an extensive 
// array of layout features, such as tables and full text justification. This is the version of the RichEdit 
// that WordPad uses in Windows XP. To really see what it's capable of displaying you can create documents in 
// Word and save them in RTF, load these into the new RichEdit and in a lot of cases it'll look identical, 
// it's that powerful. A full list of features can be found here:
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/richedit/richeditcontrols/aboutricheditcontrols.asp

// There are a couple of caveats:
// 
// 1. The control that this is bound to was shipped with Windows XP, and so this code won't work in 
//    Windows 2000 or earlier. 
//
// 2. The RichTextBox control in C# only knows about version 2, so the interface doesn't include 
//    all the new features. You can wrap a few of the features yourself through new methods on the 
//    RichEdit class.

using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;

internal class RichEdit : RichTextBox
{

    [DllImport("kernel32.dll", CharSet = CharSet.Auto)]
    private static extern IntPtr LoadLibrary(string lpFileName);

    protected override CreateParams CreateParams
    {
        get
        {
            CreateParams parameters = base.CreateParams;
            if (LoadLibrary("msftedit.dll") != IntPtr.Zero)
            {
                parameters.ExStyle |= 0x020; // transparent
                parameters.ClassName = "RICHEDIT50W";
            }
            return parameters;
        }
    }
}
...