4

如何实现点击后StackLayout或Grid中背景颜色平滑变化的效果?如果我们创建一个按钮,它就会有这种开箱即用的效果——我在附加的 gif 中展示了这一点。ListView 中的 ViewCell 也是如此。它还具有单击后更改背景颜色的连锁反应。但是如何为 StackLayout 或 Grid 实现这一点?在此处输入图像描述

如何做到这一点

4

2 回答 2

3

解决方案1:

以为您说 ViewCell 具有单击后更改背景颜色的连锁反应。您可以将StacklayoutGrid放在只有一个 ViewCell 的列表视图中。

在xml中

<StackLayout>


    <ListView x:Name="listView">

        <ListView.ItemTemplate>

            <DataTemplate>

                <ViewCell>

                    <StackLayout>

                      <Label TextColor="Black" Text="{Binding Content}"/>

                    </StackLayout>

                </ViewCell>

            </DataTemplate>

        </ListView.ItemTemplate>

    </ListView>

</StackLayout>

在后面的代码中

public class Data
{
    public string Content { get; set; }
}


public partial class MainPage : ContentPage
{

    public ObservableCollection<Data> MySource { get; set; }

    public MainPage()
    {
        InitializeComponent();

        BindingContext = this;



        MySource = new ObservableCollection<Data>()
        {
          new Data() {Content="Click Me" },
        };

        listView.ItemsSource = MySource;

    }

}

解决方案2:

您可以使用来自 nuget的包TouchView

将 nuget 包添加到 Xamarin.Forms .netStandard/PCL 项目和特定于平台的项目(iOS 和 Android)

iOS:将 TouchViewRenderer.Initialize() 行添加到您的 AppDelegate (从链接器保留)

using TouchEffect.iOS;
namespace YourApp.iOS
{
    public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
    {
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            global::Xamarin.Forms.Forms.Init();
            TouchViewRenderer.Initialize();
            LoadApplication(new App());
            return base.FinishedLaunching(app, options);
        }
    }
}

在xml中

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:YourApp"
             xmlns:touch="clr-namespace:TouchEffect;assembly=TouchEffect"
             x:Class="App11.MainPage">

    <StackLayout>
        <touch:TouchView
            RegularBackgroundColor="LightGray"
            PressedBackgroundColor="Gray"
            PressedOpacity="1"       

            PressedAnimationDuration="100"
            RegularAnimationDuration="100"
            Padding="10, 5"
            VerticalOptions="CenterAndExpand"
            HorizontalOptions="CenterAndExpand"
            Completed="Handle_TouchCompleted"
           >

            <Label Text="Click Me" 
                   TextColor="Black" 
                   FontSize="30"/>

        </touch:TouchView>
    </StackLayout>

</ContentPage>

在后面的代码中

private void Handle_TouchCompleted(TouchEffect.TouchView sender, TouchEffect.EventArgs.TouchCompletedEventArgs args)
 {
    // do something you want        
 }
于 2019-04-03T05:43:41.990 回答
1
BotonRefrescar.BackgroundColor = Color.FromHex("#32CEF9");
    Device.StartTimer(TimeSpan.FromMilliseconds(200), () =>
    {
        //do something
        BotonRefrescar.BackgroundColor = Color.FromHex("#32BBF9");
        return false;
    }
);
于 2020-11-19T16:10:32.697 回答