4.列表选择弹窗(CenterListPopup)

愿你出走半生,归来仍是少年!

环境:.NET 7、MAUI

在屏幕中间弹窗的列表选择弹窗。

1.布局

XML 复制代码
<?xml version="1.0" encoding="utf-8" ?>
<toolkit:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="MauiLib.Utility.Controls.Popups.CenterListPopup"
             xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
             x:Name="popup" 
             xmlns:config="clr-namespace:MauiLib.Utility.Configs;assembly=MauiLib.Utility"
             Color="Transparent"  
                
              >

    <VerticalStackLayout x:Name="outLyt"    BackgroundColor="Transparent">

        <Border  WidthRequest="300"     BackgroundColor="White"   StrokeThickness="1"  StrokeShape="RoundRectangle 10,10,10,10"  HorizontalOptions="Center">

            <VerticalStackLayout    >

                <Label  x:Name="lbTitle"   Text="请选择任意一项" FontAttributes="Bold"  HorizontalOptions="Center" Padding="0,15,0,15" FontSize="18"/>

                <Border Stroke="{Static config:ThemeConfig.SubTitle}" BackgroundColor="{Static config:ThemeConfig.SubTitle}"   StrokeThickness="0.2"  />

                <ListView    x:Name="lv" RowHeight="35"         ItemSelected="lv_ItemSelected"   VerticalScrollBarVisibility="Never">
                    <ListView.ItemTemplate>
                        <DataTemplate>
                            <ViewCell>
                                <Grid >
                                    <Grid.RowDefinitions>
                                        <RowDefinition   />
                                    </Grid.RowDefinitions>
                                    <Grid.ColumnDefinitions>
                                        <ColumnDefinition  />
                                    </Grid.ColumnDefinitions>
                                    <Label  Text="{Binding}" FontSize="14"  HorizontalTextAlignment="Center" VerticalTextAlignment="Center" TextColor="Black"/>
                                </Grid>
                            </ViewCell>

                        </DataTemplate>
                    </ListView.ItemTemplate>
                </ListView>

            </VerticalStackLayout>
        </Border>
    </VerticalStackLayout>
</toolkit:Popup>

2.代码

cs 复制代码
public partial class CenterListPopup : CommunityToolkit.Maui.Views.Popup
{
    private Action<int, string> _itemClick;
    
    /// <summary>
    /// 
    /// </summary>
    /// <param name="items">需要选择的数据</param>
    /// <param name="itemClick">点击回调</param>
    /// <param name="maxShowCount">界面上最多显示的数量</param>
	public CenterListPopup(List<string> items, Action<int, string> itemClick,int maxShowCount=7)
    {
		InitializeComponent();
        
        if(items==null || items.Count < 2)
        {
            throw new ArgumentException("数据应至少两个!");
        }

        if (items.Distinct().Count() != items.Count)
        {
            throw new ArgumentException("数据不可存在重复项!");
        }

        lv.ItemsSource = items;

        _itemClick = itemClick;
 
          
        if (items.Count > maxShowCount)
        {
            lv.HeightRequest = maxShowCount * 35;
        }
        else
        {
            lv.HeightRequest = items.Count * 35;
        }
    }

    private  void lv_ItemSelected(object sender, SelectedItemChangedEventArgs e)
    {
         _itemClick?.Invoke(e.SelectedItemIndex,e.SelectedItem.ToString());

        Close();
    }
}

3.使用

cs 复制代码
CenterListPopup popup = new CenterListPopup(
    new List<string>() { "1", "2", "3", "4",  "5", "6", "7"  , "8", "9", "10", }
    , async (index, str) =>
    {
      await  Toast.Make($"点击中第{index}项,数据为{str}").Show();
    });

this.ShowPopup(popup);

4.效果

效果

相关推荐
Dongwoo Jeong3 分钟前
UI架构的历史与基础入门
c#·mvc·mvvm·mvp·mvi·architecture
mascon4 分钟前
C#自定义扩展方法 及 EventHandler<TEventArgs> 委托
开发语言·c#
冰茶_4 小时前
掌握LINQ:查询语法与方法语法全解析
sql·学习·microsoft·微软·c#·linq
与火星的孩子对话4 小时前
Unity3D开发AI桌面精灵/宠物系列 【六】 人物模型 语音口型同步 LipSync 、梅尔频谱MFCC技术、支持中英文自定义编辑- 基于 C# 语言开发
人工智能·unity·c#·游戏引擎·宠物·lipsync
她说彩礼65万4 小时前
C# 中的锁
开发语言·c#
敲代码的 蜡笔小新8 小时前
【行为型之访问者模式】游戏开发实战——Unity灵活数据操作与跨系统交互的架构秘诀
unity·设计模式·c#·访问者模式
明耀9 小时前
WPF C# 用WebView加载H5页面(uniapp项目,vue项目)
uni-app·c#·wpf
我不是程序猿儿13 小时前
【C#】 lock 关键字
java·开发语言·c#
动感光博17 小时前
Unity序列化字段、单例模式(Singleton Pattern)
unity·单例模式·c#