This repository has been archived on 2025-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
superstar/PrimaryFormParts/LanguageSearch/PrimaryForm.LanguageSearch.HanYu.cs
2025-03-18 11:35:10 +08:00

21 lines
706 B
C#

using System;
using System.Linq;
using System.Windows.Forms;
using System.Drawing;
namespace DualScreenDemo
{
public partial class PrimaryForm
{
private void InitializeHanYuButton()
{
Rectangle hanYuButtonCropArea = new Rectangle(1214, 544, 209, 58);
InitializeButton(ref hanYuButton, "韓語", 1214, 544, 209, 58, hanYuButtonCropArea, normalStateImageLanguageQuery, out hanYuNormalBackground, mouseDownImageLanguageQuery, out hanYuActiveBackground, HanYuButton_Click);
}
private void HanYuButton_Click(object sender, EventArgs e)
{
OnLanguageButtonClick(hanYuButton, hanYuActiveBackground, "韓語");
}
}
}