16 lines
328 B
C#
Raw Normal View History

namespace Sunny.UI.Demo
2020-05-11 21:11:29 +08:00
{
public partial class FAvatar : UIPage
2020-05-11 21:11:29 +08:00
{
public FAvatar()
{
InitializeComponent();
}
private void uiAvatar4_Click(object sender, System.EventArgs e)
2020-05-11 21:11:29 +08:00
{
uiContextMenuStrip1.Show(uiAvatar4, 0, uiAvatar4.Height);
}
}
}