Xamarin 自定义 ToolbarItem 溢出菜单实现(Popover/Popup) 弹出下拉效果
使用 Rg.Plugins.Popup 插件
1. 新建 PopupMenu.xaml
<?xml version="1.0" encoding="utf-8" ?>
<pages:PopupPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:pages="clr-namespace:Rg.Plugins.Popup.Pages;assembly=Rg.Plugins.Popup"
xmlns:animations="clr-namespace:Rg.Plugins.Popup.Animations;assembly=Rg.Plugins.Popup"
xmlns:iconize="clr-namespace:Plugin.Iconize;assembly=Plugin.Iconize"
x:Class="DCMS.Client.Views.CustomView.PopupMenu" x:Name="PopupMaster">
<pages:PopupPage.Resources>
<ResourceDictionary>
<Style x:Key="EntryStyle"
TargetType="Entry">
<Setter Property="PlaceholderColor"
Value="#9cdaf1" />
<Setter Property="TextColor"
Value="#7dbbe6" />
</Style>
</ResourceDictionary>
</pages:PopupPage.Resources>
<pages:PopupPage.Animation>
<animations:ScaleAnimation PositionIn="Top"
PositionOut="Center"
ScaleIn=""
ScaleOut="0.7"
DurationIn=""
EasingIn="BounceOut" />
</pages:PopupPage.Animation>
<ScrollView HorizontalOptions="End"
VerticalOptions="Start">
<AbsoluteLayout Margin="0,45,0,0"
x:Name="MainLayout">
<Frame x:Name="FrameContainer"
Margin="0,10,10,0"
HorizontalOptions="Center"
BorderColor="Transparent"
BackgroundColor="White">
<ListView x:Name="SecondaryToolbarListView"
VerticalOptions="Start"
HorizontalOptions="Start"
WidthRequest=""
HasUnevenRows="True"
ItemsSource="{Binding Source={x:Reference PopupMaster},Path=MenuItems}">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Orientation="Horizontal"
HorizontalOptions="FillAndExpand"
Margin=""
Spacing=""
HeightRequest=""
Padding="15,0,0,0">
<iconize:IconImage x:Name="iconImage"
Icon="{Binding Icon}"
HorizontalOptions="Start"
VerticalOptions="Center"
Margin="0,0,8,0"
IconColor="{StaticResource PrimaryDarkColor}"
IconSize="" />
<Label x:Name="menuText"
Text="{Binding MenuText}"
FontSize=""
VerticalOptions="Center"
HorizontalOptions="Start" />
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</Frame>
<ContentView AbsoluteLayout.LayoutFlags="XProportional"
AbsoluteLayout.LayoutBounds=".8,5, 15, 15">
<ContentView.GestureRecognizers>
<TapGestureRecognizer Tapped="OnCloseButtonTapped" />
</ContentView.GestureRecognizers>
<BoxView HeightRequest=""
x:Name="CloseImage"
WidthRequest=""
BackgroundColor="White"></BoxView>
</ContentView>
</AbsoluteLayout>
</ScrollView>
</pages:PopupPage>
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class PopupMenu : PopupPage
{
private List<ToolbarItemModel> MenuItems { get; set; }
public PopupMenu (List<ToolbarItemModel> data)
{
InitializeComponent ();
MenuItems = data;
} protected override void OnAppearing()
{
base.OnAppearing();
SecondaryToolbarListView.ItemsSource = MenuItems;
SecondaryToolbarListView.HeightRequest = MenuItems.Count * ;
} protected override void OnAppearingAnimationBegin()
{
base.OnAppearingAnimationBegin();
CloseImage.Rotation = ;
//CloseImage.TranslationY = -10;
MainLayout.RaiseChild(CloseImage);
} private void OnCloseButtonTapped(object sender, EventArgs e)
{
CloseAllPopup();
} protected override bool OnBackgroundClicked()
{
CloseAllPopup(); return false;
} private async void CloseAllPopup()
{
await PopupNavigation.Instance.PopAllAsync();
}
}
2. 在需要添加Toolbar 的页面中 添加 菜单项。
public partial class SaleBillPage : ContentPage
{ private PopupMenu _popupMenu; public SaleBillPage()
{
InitializeComponent(); var items = new List<ToolbarItemModel>
{
new ToolbarItemModel {Icon = "fas-list-alt", MenuText = "历史单据"},
new ToolbarItemModel {Icon = "fas-list-alt", MenuText = "支付方式"},
new ToolbarItemModel {Icon = "fas-list-alt", MenuText = "欠款"},
new ToolbarItemModel {Icon = "fas-list-alt", MenuText = "优惠"},
new ToolbarItemModel {Icon = "fas-list-alt", MenuText = "整单备注"},
new ToolbarItemModel {Icon = "fas-list-alt", MenuText = "清空单据"},
new ToolbarItemModel {Icon = "fas-list-alt", MenuText = "打印"},
}; _popupMenu = new PopupMenu(items);
} #region Overrides protected override void OnAppearing()
{
base.OnAppearing();
this.ToolbarItems.Clear();
foreach (var toolBarItem in GetToolBarItems().ToList())
{
this.ToolbarItems.Add(toolBarItem);
}
} #endregion private IList<ToolbarItem> GetToolBarItems()
{
var list = new List<ToolbarItem>();
list.Add(new ToolbarItem("\uf0c7", "", () =>
{
Device.BeginInvokeOnMainThread(() =>
{
DisplayAlert("提示", "抱歉,功能稍后开放...", "取消");
});
},ToolbarItemOrder.Primary, ));
list.Add(new ToolbarItem("\uf0c9", "", () =>
{
Device.BeginInvokeOnMainThread(async () =>
{
await PopupNavigation.Instance.PushAsync(_popupMenu);
});
}, ToolbarItemOrder.Primary, )); return list;
}
}
效果如图:
Xamarin 自定义 ToolbarItem 溢出菜单实现(Popover/Popup) 弹出下拉效果的更多相关文章
- IOS第二天-新浪微博 - 添加搜索框,弹出下拉菜单 ,代理的使用 ,HWTabBar.h(自定义TabBar)
********HWDiscoverViewController.m(发现) - (void)viewDidLoad { [super viewDidLoad]; // 创建搜索框对象 HWSearc ...
- 【android开发】使用PopupWindow实现页面点击顶部弹出下拉菜单
没有太多花样,也没有很复杂的技术,就是简单的PopupWindow的使用,可以实现点击弹出一个自定义的view,view里可以随便设计,常用的可以放一个listview. demo中我只是一个点击展示 ...
- 有序无序Ul->Li Ol->Li菜单,默认点击当前弹出下拉,再次点击收起下拉菜单(变形2 ---修饰)
从上面可以看出,两个问题,第一:下拉出现的太快太突然,第二:再点击下一个下拉菜单的时候,上一个不会闭合,针对这两个问题,接下来会一 一解决. 解决下拉太快: js中有个jquery效果,有一个效果是j ...
- 有序无序ul->li ol->li菜单,默认点击当前弹出下拉,再次点击收起下拉菜单
实现这一效果利用css和js技术结合 以ul->li为例子 <!DOCTYPE html><html lang="en"><head> & ...
- bootstrap中popover.js(弹出框)使用总结+案例
bootstrap中popover.js(弹出框)使用总结+案例 *转载请注明出处: 作者:willingtolove: http://www.cnblogs.com/willingtolove/p/ ...
- Android定位&地图&导航——基于百度地图,实现自定义图标绘制并点击时弹出泡泡
一.问题描述 上一次我们使用百度地图实现基本的定位功能,接下来我们继续实现搜索和定位,并使用LocationOverlay绘制定位位置,同时展示如何使用自定义图标绘制并点击时弹出泡泡 如图所示: 二. ...
- UWP Popup 弹出
一:需求 做一个类似于安卓的弹出消息框,如图.当用户点击下载或者选择时,能够从底部弹出一个提示框,用于提示用户. 二:Popup 类 不需要我们自己额外去写一个弹窗类,微软自己有一个Popup 弹窗类 ...
- vant - 弹框 【Popup 弹出层】【DatetimePicker 时间选择】
[HelloWorld.vue] <template> <div class="hello"> <van-row class="m-head ...
- UWP Popup 弹出提示框
一:需求 做一个类似于安卓的弹出消息框,如图.当用户点击下载或者选择时,能够从底部弹出一个提示框,用于提示用户. 二:Popup 类 不需要我们自己额外去写一个弹窗类,微软自己有一个Popup 弹窗类 ...
随机推荐
- laravle框架报错Malformed UTF-8 characters, possibly incorrectly encoded
原因使用了redis, 没有配置 复制了Malformed UTF-8 characters, possibly incorrectly encoded百度了一下. 一直没找到原因 后来看到https ...
- P1991 无线通讯网 最小生成树
题目描述 国防部计划用无线网络连接若干个边防哨所.2 种不同的通讯技术用来搭建无线网络: 每个边防哨所都要配备无线电收发器:有一些哨所还可以增配卫星电话. 任意两个配备了一条卫星电话线路的哨所(两边都 ...
- The Triangle(DP-数塔问题)
题目链接:http://poj.org/problem?id=1163 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 (Figure 1) Figure 1 shows a number ...
- React实现局部刷新
[项目结构] 流程: 入口文件 -> 路由 -> layout -> Analysi/Monitor/Workspace 1.入口文件 -> src/index.js 2.组件 ...
- ISP PIPLINE (五) Denoise
what is the Denoise? Denoise就是图像去噪,平滑图像,并保留图像细节. why does Denoise? 图像在采集并转换为数字信号的过程会引入一些噪声,这些噪声会让图片看 ...
- Anaconda基础(一)
目录 Conda常见命令 环境管理 包管理 conda管理 小技巧 Conda常见命令 环境管理 创建环境 conda create -n 环境名 包列表 进入环境 source activate 环 ...
- Hibernate Session对象核心方法
1. 持久化对象的状态: 站在持久化的角度,Hibernate 把对象分为四种状态:持久化状态,临时状态,游离状态,删除状态 Session 的特定方法能使对象从一个状态转到另一个状态 临时对象: 在 ...
- 解密Redis的持久化和主从复制机制
Redis持久化 Redis 提供了多种不同级别的持久化方式: RDB 持久化可以在指定的时间间隔内生成数据集的时间点快照(point-in-time snapshot). AOF 持久化记录服务器执 ...
- 不让浏览器缓存index.html
参考文档:https://www.2cto.com/ask/question/4598 location = /index.html { add_header Cache-Control " ...
- servlet实现简单的登录功能
1.登录页面 Login.html <%@page contentType="text/html" pageEncoding="UTF-8"%> & ...