菜鸟教程小白 发表于 2022-12-13 09:52:54

c# - 如何在 Xamarin.forms 中更改 Alertbox 的大小


                                            <p><p>我想在我的内容页面中使用 <code>AlertBox</code>。我正在以这种方式使用 <code>AlertBox</code>。</p>

<pre><code>var alertButton1 = new Button { Text = &#34;SimpleWay&#34; };
alertButton1.Clicked += async (sender, e) =&gt;
{
   await DisplayAlert (&#34;Alert&#34;, &#34;You are veiwing data&#34;, &#34;OK&#34;);
};
</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 (&#34;Alert&#34;, &#34;You are veiwing data&#34;, &#34;OK&#34;);   
</code></pre>

<p>从这个变化到这样的东西......</p>

<pre><code>   await DisplayAlert (&#34;Alert&#34;, &lt;add-a-complete-view&gt;, &#34;OK&#34;);
</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]
查看完整版本: c# - 如何在 Xamarin.forms 中更改 Alertbox 的大小