superstar_v2/PrimaryFormParts/LanguageSearch/PrimaryForm.LanguageSearch.HanYu.cs

16 lines
622 B
C#
Raw Normal View History

2025-04-07 16:54:10 +08:00
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, "韓語");
}
}
}