📄 basegallerycontrol.cs
字号:
//------------------------------------------------------------------------------
// <copyright company="Telligent Systems">
// Copyright (c) Telligent Systems Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using CommunityServer.Galleries;
using CommunityServer.Galleries.Components;
namespace CommunityServer.ControlPanel.UI
{
/// <summary>
/// Summary description for BaseGalleryControl.
/// </summary>
public class BaseGalleryControl : BaseControl
{
public BaseGalleryControl()
{
}
protected BaseGalleryPage GalleryPage
{
get {return this.PanelPage as BaseGalleryPage;}
}
protected Gallery CurrentGallery
{
get { return this.GalleryPage.CurrentGallery;}
}
private GalleryPostType gpt = GalleryPostType.Image;
public virtual GalleryPostType PostType
{
get{return gpt;}
set {gpt = value;}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -