mirror of
https://gitee.com/AntdUI/AntdUI.git
synced 2026-03-31 10:40:40 +08:00
25 lines
744 B
C#
25 lines
744 B
C#
// Copyright (C) Tom <17379620>. All Rights Reserved.
|
|
// AntdUI WinForm Library | Licensed under Apache-2.0 License
|
|
// Gitee: https://gitee.com/AntdUI/AntdUI
|
|
// GitHub: https://github.com/AntdUI/AntdUI
|
|
// GitCode: https://gitcode.com/AntdUI/AntdUI
|
|
|
|
using System.Windows.Forms;
|
|
|
|
namespace Demo.Controls
|
|
{
|
|
public partial class Breadcrumb : UserControl
|
|
{
|
|
AntdUI.BaseForm form;
|
|
public Breadcrumb(AntdUI.BaseForm _form)
|
|
{
|
|
form = _form;
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void breadcrumb1_ItemClick(object sender, AntdUI.BreadcrumbItemEventArgs e)
|
|
{
|
|
AntdUI.Message.info(form, AntdUI.Localization.Get("Click:", "点击了:") + e.Item.Text);
|
|
}
|
|
}
|
|
} |