Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/307.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何在重写的OnPaint方法中实现ImageAlign.MiddleCenter_C#_Onpaint - Fatal编程技术网

C# 如何在重写的OnPaint方法中实现ImageAlign.MiddleCenter

C# 如何在重写的OnPaint方法中实现ImageAlign.MiddleCenter,c#,onpaint,C#,Onpaint,正如主题行所解释的那样 我想在按钮的Image属性中实现ImageAlign.MiddleCenter的行为 NET中的控件 我正在覆盖按钮的OnPaint事件。 我使用e.Graphics.DrawImage(Image,oDrawRectagle) 在按钮控件内绘制图像。 但是,这始终显示在按钮的左侧。 因为oDrawRectagle总是返回ClientRectangle的0,0坐标 我希望图像始终对齐ImageAlign.MiddleCenter。我如何做到这一点 谢谢 protect

正如主题行所解释的那样

我想在按钮的Image属性中实现ImageAlign.MiddleCenter的行为 NET中的控件

我正在覆盖按钮的OnPaint事件。 我使用e.Graphics.DrawImage(Image,oDrawRectagle) 在按钮控件内绘制图像。 但是,这始终显示在按钮的左侧。 因为oDrawRectagle总是返回ClientRectangle的0,0坐标

我希望图像始终对齐ImageAlign.MiddleCenter。我如何做到这一点

谢谢

  protected override void  OnPaint(PaintEventArgs e)
            {
                 Graphics g = e.Graphics;

                 int iHeight;
                 int iWidth;

                 if (Image != null)
                 {
                     //newSize = MaintainAspectRatio(Image, ClientRectangle.Width, ClientRectangle.Height);
                     //iHeight = newSize.Height;
                     //iWidth = newSize.Width;
                     Rectangle ResizedRectangle = MaintainAspectRatio(Image,ClientRectangle);
                     iHeight = ResizedRectangle.Height;
                     iWidth = ResizedRectangle.Width;

                 }
                 else
                 {
                     iWidth = ClientRectangle.Width;
                     iHeight = ClientRectangle.Height;
                 }

                 g.FillRectangle(new SolidBrush(Color.FromArgb(213, 221, 224)), ClientRectangle);

                 // Draw border
                 Color oLeftTopColor = SystemColors.ControlLightLight;
                 Color oRightBottomColor = SystemColors.ActiveCaption;
                 Pen oLeftTopPen = new Pen(oLeftTopColor);
                 Pen oRightBottomPen = new Pen(oRightBottomColor);
                 // top line
                 g.DrawLine(oLeftTopPen, 0, 0, iWidth - 1, 0);
                 //g.DrawLine(new Pen(SystemColors.ControlLight), 1, 1, iWidth-2, 1);
                 // bottom line
                 g.DrawLine(oRightBottomPen, 0, iHeight, iWidth - 1, iHeight);
                 //g.DrawLine(new Pen(SystemColors.ControlDark), 1, iHeight-2, iWidth-2, iHeight-2);
                 // right line
                 g.DrawLine(oRightBottomPen, iWidth, 0, iWidth, iHeight - 1);
                 //g.DrawLine(new Pen(SystemColors.ControlDark), iWidth-2, 1, iWidth-2, iHeight-2);
                 // left line
                 g.DrawLine(oLeftTopPen, 0, 0, 0, iHeight - 1);
                 //g.DrawLine(new Pen(SystemColors.ControlLightLight), 1, 1, 1, iHeight-2);

                 // Draw image
                 if (Image != null)
                 {
                     //Rectangle oDrawRectagle = new Rectangle(
                     //   8, 5, iWidth - 20, iHeight - 10);
                     Rectangle oDrawRectagle = new Rectangle(
                        0, 0, iWidth, iHeight);
                     if (Enabled == false)
                     {
                         e.Graphics.DrawImage(Image, oDrawRectagle,
                            0, 0, Image.Width, Image.Height,
                            GraphicsUnit.Pixel);
                     }
                     else
                     {
                         e.Graphics.DrawImage(Image,oDrawRectagle);

                     }
                 }

                 // Draw text
                 if (Text != null)
                 {
                     int iTextTop = 5;
                     int iTextLeft = 5;
                     int iMaxTextWidth = iWidth - 10;
                     int iMaxTextHeight = iHeight - 10;
                 }
            }

您可以使用按钮大小和图像大小手动将位置更改为中心

oDrawRectangle = new Rectangle(this.Width / 2 - iWidth / 2, this.Height / 2 - iHeight / 2, iWidth, iHeight);

您可以使用按钮大小和图像大小手动将位置更改为中心

oDrawRectangle = new Rectangle(this.Width / 2 - iWidth / 2, this.Height / 2 - iHeight / 2, iWidth, iHeight);