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)
|
|
|
|
{
|
2025-05-20 16:16:27 +08:00
|
|
|
OnLanguageButtonClick(yingWenButton, yingWenActiveBackground, "英語");
|
2025-04-07 16:54:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|