刷新按钮的图标

发布于 2024-11-25 15:16:01 字数 94 浏览 1 评论 0原文

我需要找到一个像 IE 中的刷新按钮这样的图像,我可以将其用作按钮。该按钮将刷新我的其中一张表单上的数据。

在哪里可以找到这样的图像以及如何使其出现在按钮上?

I need to find an image like the Refresh button in IE that I can use for a button. The button will refresh the data on one of my forms.

Where can I find an image like this and how do I make it appear on the button?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

滥情空心 2024-12-02 15:16:01

使用标准字体“Wingdings 3”和符号 80 或 81 刷新按钮:

button1.Font = new Font("Wingdings 3", 20, FontStyle.Bold);
button1.Text = Char.ConvertFromUtf32(81); // or 80
button1.Width = 40;
button1.Height = 40;

Screenshot

Refresh-button by using standard font "Wingdings 3" with symbol 80 or 81:

button1.Font = new Font("Wingdings 3", 20, FontStyle.Bold);
button1.Text = Char.ConvertFromUtf32(81); // or 80
button1.Width = 40;
button1.Height = 40;

Screenshot

黒涩兲箜 2024-12-02 15:16:01

<一href="http://www.google.ca/search?q=free%20refresh%20icon&hl=en&prmd=ivns&tbm=isch&tb o=u&source=univ&sa=X&ei=gb4nTtiCNefk0QHQ1MHaCg&ved=0CBkQsAQ&biw=1366&bih=643" rel="nofollow noreferrer">Google 是您的朋友。

myButton.Image = new Bitmap(pathToImageFile);

或者只是通过 Visual Studio IDE 中的属性表分配图像属性。

更多可能的图标此处(这是 IE 风格...尽管您从未指定什么版本的 IE)。还有这里

在此处输入图像描述

Google is your friend.

myButton.Image = new Bitmap(pathToImageFile);

Or just assign the image property through the property sheet in the Visual Studio IDE.

More possible icons here (which are IE style... though you never specified what version of IE). And here!

enter image description here

苏别ゝ 2024-12-02 15:16:01

如果您需要图像以及刷新图标,请在此处:

Ajax 加载图像生成器

对于按钮,我认为您可以设置按钮的图像属性
示例代码如:

this.mybutton.Image = new Bitmap("refresh.jpg");

If you need a image as well as refresh icon, here:

Ajax loading image generator

For the button, I think you may set the image properties of button
sample code like:

this.mybutton.Image = new Bitmap("refresh.jpg");
薔薇婲 2024-12-02 15:16:01

您可能会在标准 Unicode 键盘符号中找到刷新符号:
重新加载、刷新 ⟲ ⟳

只需将 Visual Studio 中的内容复制粘贴到按钮内容字段即可。
无需指定特殊代码。

You may find Refresh symbol within standard Unicode Keyboard Symbols:
Reload, refresh ⟲ ⟳

Just copy paste it in Visual Studio to your button Content field.
There is not need to specify special code.

那一片橙海, 2024-12-02 15:16:01

使用本网站:
http://modernuiicons.com/

复制标签并将其放入标签内。

按钮内刷新图标的示例:

<button width="45" height="45"><Path Width="34.8333" Height="41.1667" Canvas.Left="20.5833" Canvas.Top="17.4167" Stretch="Fill" Fill="#FF000000" Data="F1 M 38,20.5833C 42.9908,20.5833 47.4912,22.6825 50.6667,26.046L 50.6667,17.4167L 55.4166,22.1667L 55.4167,34.8333L 42.75,34.8333L 38,30.0833L 46.8512,30.0833C 44.6768,27.6539 41.517,26.125 38,26.125C 31.9785,26.125 27.0037,30.6068 26.2296,36.4167L 20.6543,36.4167C 21.4543,27.5397 28.9148,20.5833 38,20.5833 Z M 38,49.875C 44.0215,49.875 48.9963,45.3932 49.7703,39.5833L 55.3457,39.5833C 54.5457,48.4603 47.0852,55.4167 38,55.4167C 33.0092,55.4167 28.5088,53.3175 25.3333,49.954L 25.3333,58.5833L 20.5833,53.8333L 20.5833,41.1667L 33.25,41.1667L 38,45.9167L 29.1487,45.9167C 31.3231,48.3461 34.483,49.875 38,49.875 Z "/></button>

不要忘记固定按钮的宽度和高度来调整图标

Use this site:
http://modernuiicons.com/

Copy tag and put it inside the tag.

Example for refresh icon inside a button:

<button width="45" height="45"><Path Width="34.8333" Height="41.1667" Canvas.Left="20.5833" Canvas.Top="17.4167" Stretch="Fill" Fill="#FF000000" Data="F1 M 38,20.5833C 42.9908,20.5833 47.4912,22.6825 50.6667,26.046L 50.6667,17.4167L 55.4166,22.1667L 55.4167,34.8333L 42.75,34.8333L 38,30.0833L 46.8512,30.0833C 44.6768,27.6539 41.517,26.125 38,26.125C 31.9785,26.125 27.0037,30.6068 26.2296,36.4167L 20.6543,36.4167C 21.4543,27.5397 28.9148,20.5833 38,20.5833 Z M 38,49.875C 44.0215,49.875 48.9963,45.3932 49.7703,39.5833L 55.3457,39.5833C 54.5457,48.4603 47.0852,55.4167 38,55.4167C 33.0092,55.4167 28.5088,53.3175 25.3333,49.954L 25.3333,58.5833L 20.5833,53.8333L 20.5833,41.1667L 33.25,41.1667L 38,45.9167L 29.1487,45.9167C 31.3231,48.3461 34.483,49.875 38,49.875 Z "/></button>

Don't forget to fix the width and height of the button to adjust the icon

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文