superstar_v2/PrimaryFormParts/LanguageSearch/PrimaryForm.LanguageSearch.TaiYu.cs

17 lines
622 B
C#
Raw Normal View History

2025-04-07 16:54:10 +08:00
namespace DualScreenDemo
{
public partial class PrimaryForm
{
private void InitializeTaiYuButton()
{
Rectangle taiYuButtonCropArea = new Rectangle(1214, 293, 209, 58);
InitializeButton(ref taiYuButton, "台語", 1214, 293, 209, 58, taiYuButtonCropArea, normalStateImageLanguageQuery, out taiYuNormalBackground, mouseDownImageLanguageQuery, out taiYuActiveBackground, TaiYuButton_Click);
}
private void TaiYuButton_Click(object sender, EventArgs e)
{
OnLanguageButtonClick(taiYuButton, taiYuActiveBackground, "台語");
}
}
}