C# Winforms Region.IsVisible

我想检测鼠标点击我自定义创建的区域。


1)我已经用矩形尝试了这段代码并且它有效,但是用字符串它没有


 GraphicsPath gp = new GraphicsPath();

    Region reg = new Region();

        private void Form1_Load(object sender, EventArgs e)

    {


        gp.AddString("TEXT", new FontFamily("Arial"),0, 20.0f, new Point(300, 10), StringFormat.GenericDefault);

        gp.Widen(Pens.AliceBlue);

        reg = new Region(gp);

    }

这是第2部分


  private void panel1_MouseDown(object sender, MouseEventArgs e)

    {

        if (reg.IsVisible(e.Location))

        {

            MessageBox.Show("aaaa");

        }

    }

它不显示消息框。:)


编辑:这是我的 Paint 事件,看看我的字符串在哪里


 private void panel1_Paint(object sender, PaintEventArgs e)

    {



        e.Graphics.DrawString("TEXT", new Font("Arial", 20), Brushes.Yellow, 300,100 );

    }


千巷猫影
浏览 210回答 1
1回答

慕盖茨4494581

最基本的错误是一个错字:一次在 绘制y = 10,另一次在y = 100。但是还有一个问题根本不那么明显:添加e.Graphics.FillPath(Brushes.Firebrick, gp);到Paint事件,你会看到它:字体有完全不同的大小。这是因为在向 a 添加文本时,GraphicsPath它使用的比例(称为'emSize')与Graphics.DrawString使用 'Point' 的比例不同。为了适应你可以使用这个:float fontsize = 20.0f;using (Graphics g = panel1.CreateGraphics()) fontsize *= g.DpiY / 72f;现在您可以GraphicsPath使用正确的坐标构建, best ..:gp.AddString("TEXT", new FontFamily("Arial"), 0, fontsize,              new Point(300, 100), StringFormat.GenericDefault);
打开App,查看更多内容
随时随地看视频慕课网APP