繁体   English   中英

更改 Xamarin Forms 提示输入的文本颜色

[英]Change the text color of Xamarin Forms Prompt Entry

我尝试从 Xamarin Forms 提示更改条目的文本颜色。 我尝试为 App 资源字典中的 Entry 控件提供默认颜色:

<Style TargetType="Entry">
    <Setter Property="TextColor" Value="White"/>
</Style>

我还尝试在 Android 项目的styles.xml文件中提供样式:

<style name="MainTheme" parent="MainTheme.Base">
      <item name="android:colorActivatedHighlight">@android:color/transparent</item>
      <item name="colorControlActivated">#FFFFFF</item>
      <item name="colorControlNormal">#FFFFFF</item>"
      <item name="colorAccent">#FFFFFF</item >
      <item name="alertDialogTheme">@style/AppCompatAlertDialogStyle</item>  
  </style>

<style name="AppCompatAlertDialogStyle" parent="Theme.AppCompat.Dialog.Alert">
    <!--buttons-->
    <item name="colorAccent">#ffffff</item>
    <!--title-->
    <item name="android:textColor">#ffffff</item>
    <!--text-->
    <item name="android:textColorPrimary">#ffffff</item>
    <!--selection list-->
    <item name="android:textColorTertiary">#ffffff</item>
    <!--background-->
    <item name="android:background">#000000</item>
  </style>

然而还没有成功。 它只是保持黑色,我想将默认黑色更改为与我的主题相匹配的其他颜色(例如绿色)。 我不在乎解决方案是否是跨平台的,因为我的项目目前仅针对 Android,这就是我尝试styles.xml方法的原因。 我想有一个样式字典的键,但我找不到它。 知道我怎么能做到这一点?

我会 go 与自定义提示,这真的很容易创建。 这是一个例子:

<?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="TestPrompt.MainPage">
    <AbsoluteLayout Padding="0" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
        <StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
            <Button Text="Display Prompt!"
                VerticalOptions="CenterAndExpand"
                HorizontalOptions="Center"
                Clicked="OnButtonClicked" />
        </StackLayout>


        <ContentView x:Name="popupView" BackgroundColor="#C0808080" Padding="10, 0" IsVisible="false" AbsoluteLayout.LayoutBounds="0, 0, 1, 1" AbsoluteLayout.LayoutFlags="All">
            <StackLayout VerticalOptions="Center" HorizontalOptions="Center">
                <StackLayout Orientation="Vertical" HeightRequest="150" WidthRequest="200" BackgroundColor="White">
                    <ContentView Padding="12, 0, 0, 0" HorizontalOptions="StartAndExpand">
                        <Label FontSize="16" FontAttributes="Bold" TextColor="Green" Text="What is your name?" />
                    </ContentView>
                    <Entry TextColor="Green" FontSize="16" VerticalOptions="CenterAndExpand"/>
                    <StackLayout Orientation="Horizontal" VerticalOptions="End">
                        <Button Text="OK" TextColor="Green" FontSize="16"  BackgroundColor="White" TextTransform="None" Clicked="OK_Clicked" />
                        <Button Text="Cancel" TextColor="Green" FontSize="16"  BackgroundColor="White" TextTransform="None" Clicked="Cancel_Clicked" />
                    </StackLayout>
                </StackLayout>
            </StackLayout>
        </ContentView>
    </AbsoluteLayout>
</ContentPage>

在 C# 中,您只需要执行以下操作:

        void OnButtonClicked(object sender, EventArgs args)
        {
            //This will show the pop up
            popupView.IsVisible = true;
        }

        private void OK_Clicked(object sender, EventArgs e)
        {
            popupView.IsVisible = false;
            //Your stuff here
        }

        private void Cancel_Clicked(object sender, EventArgs e)
        {
            popupView.IsVisible = false;
            //Your stuff here
        }

如您所见,您可以在这里控制一切。 这是这个例子的样子:

在此处输入图像描述

我认为你必须给 TargetType 一个名称。

例如 x:Key="AEntry"

在 App.xaml

 <Style x:Key="AEntry" TargetType="Entry">
        <Setter Property="TextColor" Value="Green"/>
    </Style>

在 Mainpage.xaml 调用样式

  <Entry Style="{StaticResource AEntry}" />

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM