superstar_v2/PrimaryFormParts/LanguageSearch/PrimaryForm.LanguageSearch.YingWen.cs

16 lines
641 B
C#
Raw Normal View History

2025-04-07 16:54:10 +08:00
namespace DualScreenDemo
{
public partial class PrimaryForm
{
private void InitializeYingWenButton()
{
Rectangle yingWenButtonCropArea = new Rectangle(1214, 418, 209, 59);
InitializeButton(ref yingWenButton, "英文", 1214, 418, 209, 59, yingWenButtonCropArea, normalStateImageLanguageQuery, out yingWenNormalBackground, mouseDownImageLanguageQuery, out yingWenActiveBackground, YingWenButton_Click);
}
private void YingWenButton_Click(object sender, EventArgs e)
{
OnLanguageButtonClick(yingWenButton, yingWenActiveBackground, "英文");
}
}
}