最前面的话:Smobiler是一个在VS环境中使用.Net语言来开发APP的开发平台,也许比Xamarin更方便
样式一
一、目标样式
我们要实现上图中的效果,需要如下的操作:
1.从工具栏上的“Smobiler Components”拖动一个LayoutDialog控件和一个ImageButton控件到窗体界面上
2.修改LayoutDialog控件的属性
a.Layout属性
新建MobileForm项,命名为MessageShow,如图1;
设置弹出框布局,绑定新建的窗体MessageShow,如图2;
图1 | 图2 |
3.ImageButton的Click事件
VB:
Private Sub imageButton1_Click(sender As Object, e As EventArgs)Handles imageButton1.Click
layoutDialog1.Show(new MessageShow())
End Sub
C#:
private void imageButton1_Click(object sender, EventArgs e)
{
layoutDialog1.Show(new MessageShow());
}