superstar_v2/PrimaryFormParts/LanguageSearch/PrimaryForm.LanguageSearch.GuoYu.cs

16 lines
621 B
C#
Raw Normal View History

2025-04-07 16:54:10 +08:00
namespace DualScreenDemo
{
public partial class PrimaryForm
{
private void InitializeGuoYuButton()
{
Rectangle guoYuButtonCropArea = new Rectangle(1214, 230, 209, 59);
InitializeButton(ref guoYuButton, "國語", 1214, 230, 209, 59, guoYuButtonCropArea, normalStateImageLanguageQuery, out guoYuNormalBackground, mouseDownImageLanguageQuery, out guoYuActiveBackground, GuoYuButton_Click);
}
private void GuoYuButton_Click(object sender, EventArgs e)
{
OnLanguageButtonClick(guoYuButton, guoYuActiveBackground, "國語");
}
}
}