所以我有这个代码,我在考虑你是否可以拥有多行文字?
await DisplayAlert(" Contact"," Name:" + Contact.Fullname," Close");
我还希望电子邮件和年龄显示
答案 0 :(得分:3)
{{1}}
答案 1 :(得分:0)
# Start nginx as service
# make sure nssm.exe is in C:\Windows
execute "Installing Service nginx" do
command "nssm install nginx \"path\\to\\exe\\nginx.exe\""
not_if { ::Win32::Service.exists?( 'nginx' ) }
end
service 'nginx' do
supports :status => true, :restart => true
action [ :enable, :start ]
end