gpt4 book ai didi

button - Xamarin Forms DisplayAlert 按钮 TextColor

转载 作者:行者123 更新时间:2023-12-05 02:21:44 25 4
gpt4 key购买 nike

如何更改 Xamarin Forms DisplayAlert 对话框上的按钮文本颜色?

最佳答案

FWIW,我选择在 XAML 中创建一个新的 ContentPage 并使用 Navigation.PushModalAsync 显示它。就我而言,这是模拟警报并保持对所有样式的控制的最简单方法。

XAML:

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="YourNamespace.AlertPage"
BackgroundColor="DarkGray"
Padding="40">
<ContentPage.Content>
<StackLayout BackgroundColor="White" Padding="10">
<Label x:Name="lblTitle" FontAttributes="Bold" FontSize="Large" Text="Title" HorizontalOptions="Center"></Label>
<BoxView HeightRequest="1" BackgroundColor="DarkGray"></BoxView>
<ScrollView Orientation="Vertical" VerticalOptions="FillAndExpand">
<Label x:Name="lblText" FontSize="Medium"></Label>
</ScrollView>
<BoxView HeightRequest="1" BackgroundColor="DarkGray"></BoxView>
<StackLayout Orientation="Horizontal">
<Button x:Name="btn1" Text="Button 1" HorizontalOptions="CenterAndExpand"></Button>
<Button x:Name="btn2" Text="Button 2" HorizontalOptions="CenterAndExpand"></Button>
</StackLayout>
</StackLayout>
</ContentPage.Content>
</ContentPage>

C#:

public partial class AlertPage : ContentPage
{
public Label LblTitle
{
get
{
return lblTitle;
}
}

public Label LblText
{
get
{
return lblText;
}
}

public Button Button1
{
get
{
return btn1;
}
}

public Button Button2
{
get
{
return btn2;
}
}

public AlertPage()
{
InitializeComponent();
}
}

实现:

var ap = new AlertPage();
ap.LblTitle.Text = "Instructions";
ap.LblText.Text = "The text to display!";
ap.Button1.Text = "Done";
ap.Button1.Clicked += async (s, a) =>
{
await Navigation.PopModalAsync();
};
ap.Button2.IsVisible = false;
await Navigation.PushModalAsync(ap);

截图:

Screenshot from iPhone 7+

关于button - Xamarin Forms DisplayAlert 按钮 TextColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32428364/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com