MarkRibbon.Designer.cs 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. using Microsoft.Office.Core;
  2. namespace HTEXMark
  3. {
  4. partial class MarkRibbon : Microsoft.Office.Tools.Ribbon.RibbonBase
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. public MarkRibbon()
  11. : base(Globals.Factory.GetRibbonFactory())
  12. {
  13. InitializeComponent();
  14. }
  15. /// <summary>
  16. /// 清理所有正在使用的资源。
  17. /// </summary>
  18. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  19. protected override void Dispose(bool disposing)
  20. {
  21. if (disposing && (components != null))
  22. {
  23. components.Dispose();
  24. }
  25. base.Dispose(disposing);
  26. }
  27. #region 组件设计器生成的代码
  28. /// <summary>
  29. /// 设计器支持所需的方法 - 不要修改
  30. /// 使用代码编辑器修改此方法的内容。
  31. /// </summary>
  32. private void InitializeComponent()
  33. {
  34. this.item_mark_tab = this.Factory.CreateRibbonTab();
  35. this.item_type = this.Factory.CreateRibbonGroup();
  36. this.single = this.Factory.CreateRibbonButton();
  37. this.multiple = this.Factory.CreateRibbonButton();
  38. this.judge = this.Factory.CreateRibbonButton();
  39. this.complete = this.Factory.CreateRibbonButton();
  40. this.subjective = this.Factory.CreateRibbonButton();
  41. this.connector = this.Factory.CreateRibbonButton();
  42. this.correct = this.Factory.CreateRibbonButton();
  43. this.draw = this.Factory.CreateRibbonButton();
  44. this.compose = this.Factory.CreateRibbonButton();
  45. this.sortmultiple = this.Factory.CreateRibbonButton();
  46. this.AI = this.Factory.CreateRibbonButton();
  47. this.item_taxonomy = this.Factory.CreateRibbonGroup();
  48. this.remember = this.Factory.CreateRibbonButton();
  49. this.understand = this.Factory.CreateRibbonButton();
  50. this.apply = this.Factory.CreateRibbonButton();
  51. this.analyze = this.Factory.CreateRibbonButton();
  52. this.evaluate = this.Factory.CreateRibbonButton();
  53. this.create = this.Factory.CreateRibbonButton();
  54. this.taxonomy = this.Factory.CreateRibbonButton();
  55. this.item_tool = this.Factory.CreateRibbonGroup();
  56. this.answer = this.Factory.CreateRibbonButton();
  57. this.analysis = this.Factory.CreateRibbonButton();
  58. this.score = this.Factory.CreateRibbonButton();
  59. this.point = this.Factory.CreateRibbonButton();
  60. this.itrue = this.Factory.CreateRibbonButton();
  61. this.ifalse = this.Factory.CreateRibbonButton();
  62. this.ended = this.Factory.CreateRibbonButton();
  63. this.level = this.Factory.CreateRibbonButton();
  64. this.count = this.Factory.CreateRibbonButton();
  65. this.item_user = this.Factory.CreateRibbonGroup();
  66. this.qrcode = this.Factory.CreateRibbonButton();
  67. this.user = this.Factory.CreateRibbonButton();
  68. this.schoolDropDown = this.Factory.CreateRibbonDropDown();
  69. this.subjectDropDown = this.Factory.CreateRibbonDropDown();
  70. this.dataCenter = this.Factory.CreateRibbonDropDown();
  71. this.item_mark_tab.SuspendLayout();
  72. this.item_type.SuspendLayout();
  73. this.item_taxonomy.SuspendLayout();
  74. this.item_tool.SuspendLayout();
  75. this.item_user.SuspendLayout();
  76. this.SuspendLayout();
  77. //
  78. // item_mark_tab
  79. //
  80. this.item_mark_tab.Groups.Add(this.item_type);
  81. this.item_mark_tab.Groups.Add(this.item_taxonomy);
  82. this.item_mark_tab.Groups.Add(this.item_tool);
  83. this.item_mark_tab.Groups.Add(this.item_user);
  84. this.item_mark_tab.Label = "题目标记";
  85. this.item_mark_tab.Name = "item_mark_tab";
  86. //
  87. // item_type
  88. //
  89. this.item_type.Items.Add(this.single);
  90. this.item_type.Items.Add(this.multiple);
  91. this.item_type.Items.Add(this.judge);
  92. this.item_type.Items.Add(this.complete);
  93. this.item_type.Items.Add(this.subjective);
  94. this.item_type.Items.Add(this.connector);
  95. this.item_type.Items.Add(this.correct);
  96. this.item_type.Items.Add(this.draw);
  97. this.item_type.Items.Add(this.compose);
  98. this.item_type.Items.Add(this.sortmultiple);
  99. this.item_type.Items.Add(this.AI);
  100. this.item_type.Label = "题目类型";
  101. this.item_type.Name = "item_type";
  102. //
  103. // single
  104. //
  105. this.single.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  106. this.single.Image = global::HTEXMark.Properties.Resources.单选题;
  107. this.single.Label = "单选题\n";
  108. this.single.Name = "single";
  109. this.single.ShowImage = true;
  110. this.single.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  111. //
  112. // multiple
  113. //
  114. this.multiple.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  115. this.multiple.Image = global::HTEXMark.Properties.Resources.多选题;
  116. this.multiple.Label = "多选题\n";
  117. this.multiple.Name = "multiple";
  118. this.multiple.ShowImage = true;
  119. this.multiple.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  120. //
  121. // judge
  122. //
  123. this.judge.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  124. this.judge.Image = global::HTEXMark.Properties.Resources.判断题;
  125. this.judge.Label = "判断题\n";
  126. this.judge.Name = "judge";
  127. this.judge.ShowImage = true;
  128. this.judge.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  129. //
  130. // complete
  131. //
  132. this.complete.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  133. this.complete.Image = global::HTEXMark.Properties.Resources.填空题;
  134. this.complete.Label = "填空题\n";
  135. this.complete.Name = "complete";
  136. this.complete.ShowImage = true;
  137. this.complete.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  138. //
  139. // subjective
  140. //
  141. this.subjective.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  142. this.subjective.Image = global::HTEXMark.Properties.Resources.问答题;
  143. this.subjective.Label = "问答题\n";
  144. this.subjective.Name = "subjective";
  145. this.subjective.ShowImage = true;
  146. this.subjective.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  147. //
  148. // connector
  149. //
  150. this.connector.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  151. this.connector.Image = global::HTEXMark.Properties.Resources.连线题;
  152. this.connector.Label = "连线题\n";
  153. this.connector.Name = "connector";
  154. this.connector.ShowImage = true;
  155. this.connector.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  156. //
  157. // correct
  158. //
  159. this.correct.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  160. this.correct.Image = global::HTEXMark.Properties.Resources.改错题;
  161. this.correct.Label = "改错题\n";
  162. this.correct.Name = "correct";
  163. this.correct.ShowImage = true;
  164. this.correct.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  165. //
  166. // draw
  167. //
  168. this.draw.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  169. this.draw.Image = global::HTEXMark.Properties.Resources.作图题;
  170. this.draw.Label = "作图题\n";
  171. this.draw.Name = "draw";
  172. this.draw.ShowImage = true;
  173. this.draw.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  174. //
  175. // compose
  176. //
  177. this.compose.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  178. this.compose.Image = global::HTEXMark.Properties.Resources.综合题;
  179. this.compose.Label = "综合题\n";
  180. this.compose.Name = "compose";
  181. this.compose.ShowImage = true;
  182. this.compose.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  183. //
  184. // sortmultiple
  185. //
  186. this.sortmultiple.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  187. this.sortmultiple.Image = global::HTEXMark.Properties.Resources.有序多选题;
  188. this.sortmultiple.Label = "有序多选题\n";
  189. this.sortmultiple.Name = "sortmultiple";
  190. this.sortmultiple.ShowImage = true;
  191. this.sortmultiple.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  192. //
  193. // AI
  194. //
  195. this.AI.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  196. this.AI.Image = global::HTEXMark.Properties.Resources.AI;
  197. this.AI.Label = "智能出题\n";
  198. this.AI.Name = "AI";
  199. this.AI.ShowImage = true;
  200. this.AI.Visible = false;
  201. this.AI.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.AI_Click);
  202. //
  203. // item_taxonomy
  204. //
  205. this.item_taxonomy.Items.Add(this.remember);
  206. this.item_taxonomy.Items.Add(this.understand);
  207. this.item_taxonomy.Items.Add(this.apply);
  208. this.item_taxonomy.Items.Add(this.analyze);
  209. this.item_taxonomy.Items.Add(this.evaluate);
  210. this.item_taxonomy.Items.Add(this.create);
  211. this.item_taxonomy.Items.Add(this.taxonomy);
  212. this.item_taxonomy.Label = "认知层次";
  213. this.item_taxonomy.Name = "item_taxonomy";
  214. //
  215. // remember
  216. //
  217. this.remember.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  218. this.remember.Image = global::HTEXMark.Properties.Resources.记忆;
  219. this.remember.Label = "记忆\n";
  220. this.remember.Name = "remember";
  221. this.remember.ShowImage = true;
  222. this.remember.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  223. //
  224. // understand
  225. //
  226. this.understand.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  227. this.understand.Image = global::HTEXMark.Properties.Resources.理解;
  228. this.understand.Label = "理解\n";
  229. this.understand.Name = "understand";
  230. this.understand.ShowImage = true;
  231. this.understand.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  232. //
  233. // apply
  234. //
  235. this.apply.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  236. this.apply.Image = global::HTEXMark.Properties.Resources.应用;
  237. this.apply.Label = "应用\n";
  238. this.apply.Name = "apply";
  239. this.apply.ShowImage = true;
  240. this.apply.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  241. //
  242. // analyze
  243. //
  244. this.analyze.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  245. this.analyze.Image = global::HTEXMark.Properties.Resources.分析;
  246. this.analyze.Label = "分析\n";
  247. this.analyze.Name = "analyze";
  248. this.analyze.ShowImage = true;
  249. this.analyze.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  250. //
  251. // evaluate
  252. //
  253. this.evaluate.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  254. this.evaluate.Image = global::HTEXMark.Properties.Resources.评价;
  255. this.evaluate.Label = "评价\n";
  256. this.evaluate.Name = "evaluate";
  257. this.evaluate.ShowImage = true;
  258. this.evaluate.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  259. //
  260. // create
  261. //
  262. this.create.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  263. this.create.Image = global::HTEXMark.Properties.Resources.创造;
  264. this.create.Label = "创造\n";
  265. this.create.Name = "create";
  266. this.create.ShowImage = true;
  267. this.create.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  268. //
  269. // taxonomy
  270. //
  271. this.taxonomy.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  272. this.taxonomy.Image = global::HTEXMark.Properties.Resources.认知层次;
  273. this.taxonomy.Label = "认知层次\n";
  274. this.taxonomy.Name = "taxonomy";
  275. this.taxonomy.ShowImage = true;
  276. this.taxonomy.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  277. //
  278. // item_tool
  279. //
  280. this.item_tool.Items.Add(this.answer);
  281. this.item_tool.Items.Add(this.analysis);
  282. this.item_tool.Items.Add(this.score);
  283. this.item_tool.Items.Add(this.point);
  284. this.item_tool.Items.Add(this.itrue);
  285. this.item_tool.Items.Add(this.ifalse);
  286. this.item_tool.Items.Add(this.ended);
  287. this.item_tool.Items.Add(this.level);
  288. this.item_tool.Items.Add(this.count);
  289. this.item_tool.Label = "其他标记";
  290. this.item_tool.Name = "item_tool";
  291. //
  292. // answer
  293. //
  294. this.answer.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  295. this.answer.Image = global::HTEXMark.Properties.Resources.答案;
  296. this.answer.Label = "答案\n";
  297. this.answer.Name = "answer";
  298. this.answer.ShowImage = true;
  299. this.answer.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  300. //
  301. // analysis
  302. //
  303. this.analysis.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  304. this.analysis.Image = global::HTEXMark.Properties.Resources.解析;
  305. this.analysis.Label = "解析\n";
  306. this.analysis.Name = "analysis";
  307. this.analysis.ShowImage = true;
  308. this.analysis.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  309. //
  310. // score
  311. //
  312. this.score.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  313. this.score.Image = global::HTEXMark.Properties.Resources.配分;
  314. this.score.Label = "配分\n";
  315. this.score.Name = "score";
  316. this.score.ShowImage = true;
  317. this.score.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  318. //
  319. // point
  320. //
  321. this.point.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  322. this.point.Image = global::HTEXMark.Properties.Resources.知识点;
  323. this.point.Label = "知识点\n";
  324. this.point.Name = "point";
  325. this.point.ShowImage = true;
  326. this.point.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  327. //
  328. // itrue
  329. //
  330. this.itrue.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  331. this.itrue.Image = global::HTEXMark.Properties.Resources.正确;
  332. this.itrue.Label = "对\n";
  333. this.itrue.Name = "itrue";
  334. this.itrue.ShowImage = true;
  335. this.itrue.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  336. //
  337. // ifalse
  338. //
  339. this.ifalse.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  340. this.ifalse.Image = global::HTEXMark.Properties.Resources.错误;
  341. this.ifalse.Label = "错\n";
  342. this.ifalse.Name = "ifalse";
  343. this.ifalse.ShowImage = true;
  344. this.ifalse.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  345. //
  346. // ended
  347. //
  348. this.ended.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  349. this.ended.Image = global::HTEXMark.Properties.Resources.结束;
  350. this.ended.Label = "结束\n";
  351. this.ended.Name = "ended";
  352. this.ended.ShowImage = true;
  353. this.ended.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  354. //
  355. // level
  356. //
  357. this.level.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  358. this.level.Image = global::HTEXMark.Properties.Resources.难度;
  359. this.level.Label = "难度\n";
  360. this.level.Name = "level";
  361. this.level.ShowImage = true;
  362. this.level.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  363. //
  364. // count
  365. //
  366. this.count.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  367. this.count.Image = global::HTEXMark.Properties.Resources.填空数量;
  368. this.count.Label = "填空数\n";
  369. this.count.Name = "count";
  370. this.count.ShowImage = true;
  371. this.count.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.MarkTags_Click);
  372. //
  373. // item_user
  374. //
  375. this.item_user.Items.Add(this.qrcode);
  376. this.item_user.Items.Add(this.user);
  377. this.item_user.Items.Add(this.schoolDropDown);
  378. this.item_user.Items.Add(this.subjectDropDown);
  379. this.item_user.Items.Add(this.dataCenter);
  380. this.item_user.Label = "用户信息";
  381. this.item_user.Name = "item_user";
  382. //
  383. // qrcode
  384. //
  385. this.qrcode.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  386. this.qrcode.Image = global::HTEXMark.Properties.Resources.二维码;
  387. this.qrcode.Label = "登录\n";
  388. this.qrcode.Name = "qrcode";
  389. this.qrcode.ShowImage = true;
  390. this.qrcode.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.QRCode_Click);
  391. //
  392. // user
  393. //
  394. this.user.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
  395. this.user.Image = global::HTEXMark.Properties.Resources.教师;
  396. this.user.Label = "用户\n";
  397. this.user.Name = "user";
  398. this.user.ShowImage = true;
  399. this.user.Visible = false;
  400. //
  401. // schoolDropDown
  402. //
  403. this.schoolDropDown.Image = global::HTEXMark.Properties.Resources.学校;
  404. this.schoolDropDown.Label = "学校";
  405. this.schoolDropDown.Name = "schoolDropDown";
  406. this.schoolDropDown.ShowImage = true;
  407. this.schoolDropDown.Visible = false;
  408. //
  409. // subjectDropDown
  410. //
  411. this.subjectDropDown.Image = global::HTEXMark.Properties.Resources.学科;
  412. this.subjectDropDown.Label = "学科";
  413. this.subjectDropDown.Name = "subjectDropDown";
  414. this.subjectDropDown.ShowImage = true;
  415. this.subjectDropDown.Visible = false;
  416. //
  417. // dataCenter
  418. //
  419. this.dataCenter.Image = global::HTEXMark.Properties.Resources.数据中心;
  420. this.dataCenter.Label = "站点";
  421. this.dataCenter.Name = "dataCenter";
  422. this.dataCenter.ShowImage = true;
  423. //
  424. // MarkRibbon
  425. //
  426. this.Name = "MarkRibbon";
  427. this.RibbonType = "Microsoft.Word.Document";
  428. this.Tabs.Add(this.item_mark_tab);
  429. this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.MarkRibbon_Load);
  430. this.item_mark_tab.ResumeLayout(false);
  431. this.item_mark_tab.PerformLayout();
  432. this.item_type.ResumeLayout(false);
  433. this.item_type.PerformLayout();
  434. this.item_taxonomy.ResumeLayout(false);
  435. this.item_taxonomy.PerformLayout();
  436. this.item_tool.ResumeLayout(false);
  437. this.item_tool.PerformLayout();
  438. this.item_user.ResumeLayout(false);
  439. this.item_user.PerformLayout();
  440. this.ResumeLayout(false);
  441. }
  442. #endregion
  443. internal Microsoft.Office.Tools.Ribbon.RibbonTab item_mark_tab;
  444. internal Microsoft.Office.Tools.Ribbon.RibbonGroup item_type;
  445. internal Microsoft.Office.Tools.Ribbon.RibbonButton single;
  446. internal Microsoft.Office.Tools.Ribbon.RibbonButton multiple;
  447. internal Microsoft.Office.Tools.Ribbon.RibbonButton judge;
  448. internal Microsoft.Office.Tools.Ribbon.RibbonButton complete;
  449. internal Microsoft.Office.Tools.Ribbon.RibbonButton subjective;
  450. internal Microsoft.Office.Tools.Ribbon.RibbonButton connector;
  451. internal Microsoft.Office.Tools.Ribbon.RibbonButton correct;
  452. internal Microsoft.Office.Tools.Ribbon.RibbonButton draw;
  453. internal Microsoft.Office.Tools.Ribbon.RibbonButton compose;
  454. internal Microsoft.Office.Tools.Ribbon.RibbonButton sortmultiple;
  455. internal Microsoft.Office.Tools.Ribbon.RibbonGroup item_taxonomy;
  456. internal Microsoft.Office.Tools.Ribbon.RibbonButton remember;
  457. internal Microsoft.Office.Tools.Ribbon.RibbonButton understand;
  458. internal Microsoft.Office.Tools.Ribbon.RibbonButton apply;
  459. internal Microsoft.Office.Tools.Ribbon.RibbonButton analyze;
  460. internal Microsoft.Office.Tools.Ribbon.RibbonButton evaluate;
  461. internal Microsoft.Office.Tools.Ribbon.RibbonButton create;
  462. internal Microsoft.Office.Tools.Ribbon.RibbonButton taxonomy;
  463. internal Microsoft.Office.Tools.Ribbon.RibbonGroup item_tool;
  464. internal Microsoft.Office.Tools.Ribbon.RibbonButton answer;
  465. internal Microsoft.Office.Tools.Ribbon.RibbonButton analysis;
  466. internal Microsoft.Office.Tools.Ribbon.RibbonButton score;
  467. internal Microsoft.Office.Tools.Ribbon.RibbonButton point;
  468. internal Microsoft.Office.Tools.Ribbon.RibbonButton itrue;
  469. internal Microsoft.Office.Tools.Ribbon.RibbonButton ifalse;
  470. internal Microsoft.Office.Tools.Ribbon.RibbonButton ended;
  471. internal Microsoft.Office.Tools.Ribbon.RibbonButton level;
  472. internal Microsoft.Office.Tools.Ribbon.RibbonButton count;
  473. internal Microsoft.Office.Tools.Ribbon.RibbonGroup item_user;
  474. internal Microsoft.Office.Tools.Ribbon.RibbonButton qrcode;
  475. internal Microsoft.Office.Tools.Ribbon.RibbonButton user;
  476. internal Microsoft.Office.Tools.Ribbon.RibbonDropDown schoolDropDown;
  477. internal Microsoft.Office.Tools.Ribbon.RibbonDropDown subjectDropDown;
  478. internal Microsoft.Office.Tools.Ribbon.RibbonDropDown dataCenter;
  479. internal Microsoft.Office.Tools.Ribbon.RibbonButton AI;
  480. }
  481. partial class ThisRibbonCollection
  482. {
  483. internal MarkRibbon MarkRibbon
  484. {
  485. get { return this.GetRibbon<MarkRibbon>(); }
  486. }
  487. }
  488. }