gpt4 book ai didi

c# - 如何改变按钮的形状

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:08 26 4
gpt4 key购买 nike

关闭。这个问题需要更多 focused .它目前不接受答案。












想改进这个问题?更新问题,使其仅关注一个问题 editing this post .

4年前关闭。




Improve this question




我想知道如何在 C# 中制作按钮形状的圆形?
谢谢

最佳答案

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;//add this namespace

namespace shapes
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{

GraphicsPath gp = new GraphicsPath();
gp.AddEllipse(0, 0, button1.Width, button1.Height);
button1.Region = new Region(gp);
gp.Dispose();
}
}
}

关于c# - 如何改变按钮的形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2369844/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com