mirror of https://github.com/abpframework/abp.git
93 changed files with 1200 additions and 1293 deletions
@ -1,15 +1,14 @@ |
|||
namespace Volo.Abp.AspNetCore.Components.Server.BasicTheme.Bundling |
|||
namespace Volo.Abp.AspNetCore.Components.Server.BasicTheme.Bundling; |
|||
|
|||
public class BlazorBasicThemeBundles |
|||
{ |
|||
public class BlazorBasicThemeBundles |
|||
public static class Styles |
|||
{ |
|||
public static class Styles |
|||
{ |
|||
public static string Global = "Blazor.BasicTheme.Global"; |
|||
} |
|||
public static string Global = "Blazor.BasicTheme.Global"; |
|||
} |
|||
|
|||
public static class Scripts |
|||
{ |
|||
public static string Global = "Blazor.BasicTheme.Global"; |
|||
} |
|||
public static class Scripts |
|||
{ |
|||
public static string Global = "Blazor.BasicTheme.Global"; |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,9 +1,8 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Bundling; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Components.Server.BasicTheme.Bundling |
|||
namespace Volo.Abp.AspNetCore.Components.Server.BasicTheme.Bundling; |
|||
|
|||
public class BlazorBasicThemeScriptContributor : BundleContributor |
|||
{ |
|||
public class BlazorBasicThemeScriptContributor : BundleContributor |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,13 +1,12 @@ |
|||
using System.Collections.Generic; |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Bundling; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Components.Server.BasicTheme.Bundling |
|||
namespace Volo.Abp.AspNetCore.Components.Server.BasicTheme.Bundling; |
|||
|
|||
public class BlazorBasicThemeStyleContributor : BundleContributor |
|||
{ |
|||
public class BlazorBasicThemeStyleContributor : BundleContributor |
|||
public override void ConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
public override void ConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
context.Files.AddIfNotContains("/_content/Volo.Abp.AspNetCore.Components.Web.BasicTheme/libs/abp/css/theme.css"); |
|||
} |
|||
context.Files.AddIfNotContains("/_content/Volo.Abp.AspNetCore.Components.Web.BasicTheme/libs/abp/css/theme.css"); |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,13 +1,12 @@ |
|||
using Volo.Abp.AspNetCore.Components.Web.Theming; |
|||
using Volo.Abp.Modularity; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Components.Web.BasicTheme |
|||
namespace Volo.Abp.AspNetCore.Components.Web.BasicTheme; |
|||
|
|||
[DependsOn( |
|||
typeof(AbpAspNetCoreComponentsWebThemingModule) |
|||
)] |
|||
public class AbpAspNetCoreComponentsWebBasicThemeModule : AbpModule |
|||
{ |
|||
[DependsOn( |
|||
typeof(AbpAspNetCoreComponentsWebThemingModule) |
|||
)] |
|||
public class AbpAspNetCoreComponentsWebBasicThemeModule : AbpModule |
|||
{ |
|||
|
|||
} |
|||
} |
|||
|
|||
} |
|||
|
|||
@ -1,17 +1,16 @@ |
|||
using Volo.Abp.Bundling; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme |
|||
namespace Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme; |
|||
|
|||
public class BasicThemeBundleContributor : IBundleContributor |
|||
{ |
|||
public class BasicThemeBundleContributor : IBundleContributor |
|||
public void AddScripts(BundleContext context) |
|||
{ |
|||
public void AddScripts(BundleContext context) |
|||
{ |
|||
|
|||
} |
|||
} |
|||
|
|||
public void AddStyles(BundleContext context) |
|||
{ |
|||
context.Add("_content/Volo.Abp.AspNetCore.Components.Web.BasicTheme/libs/abp/css/theme.css"); |
|||
} |
|||
public void AddStyles(BundleContext context) |
|||
{ |
|||
context.Add("_content/Volo.Abp.AspNetCore.Components.Web.BasicTheme/libs/abp/css/theme.css"); |
|||
} |
|||
} |
|||
|
|||
@ -1,26 +1,25 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Theming; |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic; |
|||
|
|||
[ThemeName(Name)] |
|||
public class BasicTheme : ITheme, ITransientDependency |
|||
{ |
|||
[ThemeName(Name)] |
|||
public class BasicTheme : ITheme, ITransientDependency |
|||
{ |
|||
public const string Name = "Basic"; |
|||
public const string Name = "Basic"; |
|||
|
|||
public virtual string GetLayout(string name, bool fallbackToDefault = true) |
|||
public virtual string GetLayout(string name, bool fallbackToDefault = true) |
|||
{ |
|||
switch (name) |
|||
{ |
|||
switch (name) |
|||
{ |
|||
case StandardLayouts.Application: |
|||
return "~/Themes/Basic/Layouts/Application.cshtml"; |
|||
case StandardLayouts.Account: |
|||
return "~/Themes/Basic/Layouts/Account.cshtml"; |
|||
case StandardLayouts.Empty: |
|||
return "~/Themes/Basic/Layouts/Empty.cshtml"; |
|||
default: |
|||
return fallbackToDefault ? "~/Themes/Basic/Layouts/Application.cshtml" : null; |
|||
} |
|||
case StandardLayouts.Application: |
|||
return "~/Themes/Basic/Layouts/Application.cshtml"; |
|||
case StandardLayouts.Account: |
|||
return "~/Themes/Basic/Layouts/Account.cshtml"; |
|||
case StandardLayouts.Empty: |
|||
return "~/Themes/Basic/Layouts/Empty.cshtml"; |
|||
default: |
|||
return fallbackToDefault ? "~/Themes/Basic/Layouts/Application.cshtml" : null; |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,15 +1,14 @@ |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Bundling |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Bundling; |
|||
|
|||
public static class BasicThemeBundles |
|||
{ |
|||
public static class BasicThemeBundles |
|||
public static class Styles |
|||
{ |
|||
public static class Styles |
|||
{ |
|||
public const string Global = "Basic.Global"; |
|||
} |
|||
public const string Global = "Basic.Global"; |
|||
} |
|||
|
|||
public static class Scripts |
|||
{ |
|||
public const string Global = "Basic.Global"; |
|||
} |
|||
public static class Scripts |
|||
{ |
|||
public const string Global = "Basic.Global"; |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Bundling; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Bundling |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Bundling; |
|||
|
|||
public class BasicThemeGlobalScriptContributor : BundleContributor |
|||
{ |
|||
public class BasicThemeGlobalScriptContributor : BundleContributor |
|||
public override void ConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
public override void ConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
context.Files.Add("/themes/basic/layout.js"); |
|||
} |
|||
context.Files.Add("/themes/basic/layout.js"); |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Bundling; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Bundling |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Bundling; |
|||
|
|||
public class BasicThemeGlobalStyleContributor : BundleContributor |
|||
{ |
|||
public class BasicThemeGlobalStyleContributor : BundleContributor |
|||
public override void ConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
public override void ConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
context.Files.Add("/themes/basic/layout.css"); |
|||
} |
|||
context.Files.Add("/themes/basic/layout.css"); |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.Brand |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.Brand; |
|||
|
|||
public class MainNavbarBrandViewComponent : AbpViewComponent |
|||
{ |
|||
public class MainNavbarBrandViewComponent : AbpViewComponent |
|||
public virtual IViewComponentResult Invoke() |
|||
{ |
|||
public virtual IViewComponentResult Invoke() |
|||
{ |
|||
return View("~/Themes/Basic/Components/Brand/Default.cshtml"); |
|||
} |
|||
return View("~/Themes/Basic/Components/Brand/Default.cshtml"); |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.MainNavbar |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.MainNavbar; |
|||
|
|||
public class MainNavbarViewComponent : AbpViewComponent |
|||
{ |
|||
public class MainNavbarViewComponent : AbpViewComponent |
|||
public virtual IViewComponentResult Invoke() |
|||
{ |
|||
public virtual IViewComponentResult Invoke() |
|||
{ |
|||
return View("~/Themes/Basic/Components/MainNavbar/Default.cshtml"); |
|||
} |
|||
return View("~/Themes/Basic/Components/MainNavbar/Default.cshtml"); |
|||
} |
|||
} |
|||
|
|||
@ -1,20 +1,19 @@ |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Alerts; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.PageAlerts |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.PageAlerts; |
|||
|
|||
public class PageAlertsViewComponent : AbpViewComponent |
|||
{ |
|||
public class PageAlertsViewComponent : AbpViewComponent |
|||
{ |
|||
protected IAlertManager AlertManager { get; } |
|||
protected IAlertManager AlertManager { get; } |
|||
|
|||
public PageAlertsViewComponent(IAlertManager alertManager) |
|||
{ |
|||
AlertManager = alertManager; |
|||
} |
|||
public PageAlertsViewComponent(IAlertManager alertManager) |
|||
{ |
|||
AlertManager = alertManager; |
|||
} |
|||
|
|||
public IViewComponentResult Invoke(string name) |
|||
{ |
|||
return View("~/Themes/Basic/Components/PageAlerts/Default.cshtml", AlertManager.Alerts); |
|||
} |
|||
public IViewComponentResult Invoke(string name) |
|||
{ |
|||
return View("~/Themes/Basic/Components/PageAlerts/Default.cshtml", AlertManager.Alerts); |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using System.Collections.Generic; |
|||
using Volo.Abp.Localization; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.Toolbar.LanguageSwitch |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.Toolbar.LanguageSwitch; |
|||
|
|||
public class LanguageSwitchViewComponentModel |
|||
{ |
|||
public class LanguageSwitchViewComponentModel |
|||
{ |
|||
public LanguageInfo CurrentLanguage { get; set; } |
|||
public LanguageInfo CurrentLanguage { get; set; } |
|||
|
|||
public List<LanguageInfo> OtherLanguages { get; set; } |
|||
} |
|||
} |
|||
public List<LanguageInfo> OtherLanguages { get; set; } |
|||
} |
|||
|
|||
@ -1,14 +1,13 @@ |
|||
using Volo.Abp.AspNetCore.TestBase; |
|||
using Volo.Abp.Modularity; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo; |
|||
|
|||
[DependsOn( |
|||
typeof(AbpAspNetCoreMvcUiBootstrapDemoModule), |
|||
typeof(AbpAspNetCoreTestBaseModule) |
|||
)] |
|||
public class AbpAspNetCoreMvcUiBootstrapDemoTestModule : AbpModule |
|||
{ |
|||
[DependsOn( |
|||
typeof(AbpAspNetCoreMvcUiBootstrapDemoModule), |
|||
typeof(AbpAspNetCoreTestBaseModule) |
|||
)] |
|||
public class AbpAspNetCoreMvcUiBootstrapDemoTestModule : AbpModule |
|||
{ |
|||
|
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components; |
|||
|
|||
public class CardsModel : PageModel |
|||
{ |
|||
public class CardsModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components; |
|||
|
|||
public class GridsModel : PageModel |
|||
{ |
|||
public class GridsModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,15 +1,14 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Pagination; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components; |
|||
|
|||
public class PaginatorModel : PageModel |
|||
{ |
|||
public class PaginatorModel : PageModel |
|||
{ |
|||
public PagerModel PagerModel { get; set; } |
|||
public PagerModel PagerModel { get; set; } |
|||
|
|||
public void OnGet(int currentPage, string sort) |
|||
{ |
|||
PagerModel = new PagerModel(100, 10, currentPage, 10, "/Components/Paginator", sort); |
|||
} |
|||
public void OnGet(int currentPage, string sort) |
|||
{ |
|||
PagerModel = new PagerModel(100, 10, currentPage, 10, "/Components/Paginator", sort); |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components; |
|||
|
|||
public class TabsModel : PageModel |
|||
{ |
|||
public class TabsModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,36 +1,35 @@ |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Menus |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Menus; |
|||
|
|||
public class BasicThemeDemoMenus |
|||
{ |
|||
public class BasicThemeDemoMenus |
|||
{ |
|||
private const string Prefix = "BasicThemeDemo"; |
|||
public const string Home = Prefix + ".Home"; |
|||
private const string Prefix = "BasicThemeDemo"; |
|||
public const string Home = Prefix + ".Home"; |
|||
|
|||
public static class Components |
|||
{ |
|||
public const string Root = Prefix + ".Components"; |
|||
public const string Alerts = Root + ".Alerts"; |
|||
public const string Badges = Root + ".Badges"; |
|||
public const string Borders = Root + ".Borders"; |
|||
public const string Breadcrumbs = Root + ".Breadcrumbs"; |
|||
public const string ButtonGroups = Root + ".ButtonGroups"; |
|||
public const string Buttons = Root + ".Buttons"; |
|||
public const string Cards = Root + ".Cards"; |
|||
public const string Carousel = Root + ".Carousel"; |
|||
public const string Collapse = Root + ".Collapse"; |
|||
public const string Dropdowns = Root + ".Dropdowns"; |
|||
public const string DynamicForms = Root + ".DynamicForms"; |
|||
public const string FormElements = Root + ".FormElements"; |
|||
public const string Grids = Root + ".Grids"; |
|||
public const string ListGroups = Root + ".ListGroups"; |
|||
public const string Modals = Root + ".Modals"; |
|||
public const string Navbars = Root + ".Navbars"; |
|||
public const string Navs = Root + ".Navs"; |
|||
public const string Paginator = Root + ".Paginator"; |
|||
public const string Popovers = Root + ".Popovers"; |
|||
public const string ProgressBars = Root + ".ProgressBars"; |
|||
public const string Tables = Root + ".Tables"; |
|||
public const string Tabs = Root + ".Tabs"; |
|||
public const string Tooltips = Root + ".Tooltips"; |
|||
} |
|||
public static class Components |
|||
{ |
|||
public const string Root = Prefix + ".Components"; |
|||
public const string Alerts = Root + ".Alerts"; |
|||
public const string Badges = Root + ".Badges"; |
|||
public const string Borders = Root + ".Borders"; |
|||
public const string Breadcrumbs = Root + ".Breadcrumbs"; |
|||
public const string ButtonGroups = Root + ".ButtonGroups"; |
|||
public const string Buttons = Root + ".Buttons"; |
|||
public const string Cards = Root + ".Cards"; |
|||
public const string Carousel = Root + ".Carousel"; |
|||
public const string Collapse = Root + ".Collapse"; |
|||
public const string Dropdowns = Root + ".Dropdowns"; |
|||
public const string DynamicForms = Root + ".DynamicForms"; |
|||
public const string FormElements = Root + ".FormElements"; |
|||
public const string Grids = Root + ".Grids"; |
|||
public const string ListGroups = Root + ".ListGroups"; |
|||
public const string Modals = Root + ".Modals"; |
|||
public const string Navbars = Root + ".Navbars"; |
|||
public const string Navs = Root + ".Navs"; |
|||
public const string Paginator = Root + ".Paginator"; |
|||
public const string Popovers = Root + ".Popovers"; |
|||
public const string ProgressBars = Root + ".ProgressBars"; |
|||
public const string Tables = Root + ".Tables"; |
|||
public const string Tabs = Root + ".Tabs"; |
|||
public const string Tooltips = Root + ".Tooltips"; |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Alerts |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Alerts; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Badges |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Badges; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Borders |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Borders; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Breadcrumbs |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Breadcrumbs; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.ButtonGroups |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.ButtonGroups; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Buttons |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Buttons; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Cards |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Cards; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Collapse |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Collapse; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Dropdowns |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Dropdowns; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Grids |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Grids; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.ListGroups |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.ListGroups; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Modals |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Modals; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Navs |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Navs; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,15 +1,14 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Pagination; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Paginator |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Paginator; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
{ |
|||
public PagerModel PagerModel { get; set; } |
|||
public PagerModel PagerModel { get; set; } |
|||
|
|||
public void OnGet(int currentPage = 1, string sort = null) |
|||
{ |
|||
PagerModel = new PagerModel(100, 10, currentPage, 10, "/Components/Paginator", sort); |
|||
} |
|||
public void OnGet(int currentPage = 1, string sort = null) |
|||
{ |
|||
PagerModel = new PagerModel(100, 10, currentPage, 10, "/Components/Paginator", sort); |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Popovers |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Popovers; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.ProgressBars |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.ProgressBars; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Tables |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Tables; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Tabs |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Tabs; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Tooltips |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages.Components.Tooltips; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -1,12 +1,11 @@ |
|||
using Microsoft.AspNetCore.Mvc.RazorPages; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Pages; |
|||
|
|||
public class IndexModel : PageModel |
|||
{ |
|||
public class IndexModel : PageModel |
|||
public void OnGet() |
|||
{ |
|||
public void OnGet() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue