mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-13 16:35:55 +08:00
cc836bcf10
* 使MenItem同时支持Icon和IconFont,解决当使用iconfont.cn图标后,缩起内嵌菜单导致按钮样式不统一的问题。 * 空值判断 * add IconTemplate in MenuItem * code format * Add AuthorizeReuseTabsRouteView * add readme.md * remove comments * Add AuthorizeResuseTabsRouteView test demo * save * save * done * refactor the test app * fix test app * debug * debug * fix tab render * fix the copyright * fix package infomation * fix tab display order * fix content focerender Co-authored-by: BG345554 <ymgu@best-inc.com> Co-authored-by: James Yeung <shunjiey@hotmail.com>
18 lines
366 B
C#
18 lines
366 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign.TestApp.Client.Data
|
|
{
|
|
public class WeatherForecast
|
|
{
|
|
public DateTime Date { get; set; }
|
|
|
|
public int TemperatureC { get; set; }
|
|
|
|
public string Summary { get; set; }
|
|
|
|
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
|
}
|
|
}
|