📄 questionsdropdownlist.cs
字号:
//------------------------------------------------------------------------------
// <copyright company="Telligent Systems">
// Copyright (c) Telligent Systems Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Web.UI.WebControls;
using CommunityServer.Components;
namespace CommunityServer.Controls {
public class QuestionsDropDownList : DropDownList {
public QuestionsDropDownList() {
// Add QA variants
//
Items.Add(new ListItem(CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q1"), CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q1")));
Items.Add(new ListItem(CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q2"), CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q2")));
Items.Add(new ListItem(CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q3"), CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q3")));
Items.Add(new ListItem(CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q4"), CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q4")));
Items.Add(new ListItem(CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q5"), CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q5")));
Items.Add(new ListItem(CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q6"), CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q6")));
Items.Add(new ListItem(CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q7"), CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q7")));
Items.Add(new ListItem(CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q8"), CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q8")));
Items.Add(new ListItem(CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q9"), CommunityServer.Components.ResourceManager.GetString("Utility_QuestionsDropDownList_Q9")));
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -