c# - 如何在 Xamarin.forms 中更改 Alertbox 的大小
<p><p>我想在我的内容页面中使用 <code>AlertBox</code>。我正在以这种方式使用 <code>AlertBox</code>。</p>
<pre><code>var alertButton1 = new Button { Text = "SimpleWay" };
alertButton1.Clicked += async (sender, e) =>
{
await DisplayAlert ("Alert", "You are veiwing data", "OK");
};
</code></pre>
<p>当我运行它时,它会成功运行并以默认大小显示数据。但我想改变(垂直增加)它的大小。请帮忙。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您不能手动更改 <code>AlertBox</code> 的大小。当数据插入到 <code>AlertBox</code> 中时,<code>AlertBox</code> 会自动设置其大小。</p>
<pre><code> await DisplayAlert ("Alert", "You are veiwing data", "OK");
</code></pre>
<p>从这个变化到这样的东西......</p>
<pre><code> await DisplayAlert ("Alert", <add-a-complete-view>, "OK");
</code></pre>
<p>您的警报框会自动调整到所需的内容放置大小。</p></p>
<p style="font-size: 20px;">关于c# - 如何在 Xamarin.forms 中更改 Alertbox 的大小,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32069187/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32069187/
</a>
</p>
页:
[1]