КАТЕГОРИИ: Архитектура-(3434)Астрономия-(809)Биология-(7483)Биотехнологии-(1457)Военное дело-(14632)Высокие технологии-(1363)География-(913)Геология-(1438)Государство-(451)Демография-(1065)Дом-(47672)Журналистика и СМИ-(912)Изобретательство-(14524)Иностранные языки-(4268)Информатика-(17799)Искусство-(1338)История-(13644)Компьютеры-(11121)Косметика-(55)Кулинария-(373)Культура-(8427)Лингвистика-(374)Литература-(1642)Маркетинг-(23702)Математика-(16968)Машиностроение-(1700)Медицина-(12668)Менеджмент-(24684)Механика-(15423)Науковедение-(506)Образование-(11852)Охрана труда-(3308)Педагогика-(5571)Полиграфия-(1312)Политика-(7869)Право-(5454)Приборостроение-(1369)Программирование-(2801)Производство-(97182)Промышленность-(8706)Психология-(18388)Религия-(3217)Связь-(10668)Сельское хозяйство-(299)Социология-(6455)Спорт-(42831)Строительство-(4793)Торговля-(5050)Транспорт-(2929)Туризм-(1568)Физика-(3942)Философия-(17015)Финансы-(26596)Химия-(22929)Экология-(12095)Экономика-(9961)Электроника-(8441)Электротехника-(4623)Энергетика-(12629)Юриспруденция-(1492)Ядерная техника-(1748) |
Код формы с лекциями
namespace Kursach {public enum Modes { Lecture, ChooseLecture } public partial class LecturesForm: Form { private ChoiseButtons buttons; private DirectoryInfo[] lecturesDirectories; private DirectoryInfo currentLectureDirectory; private Point startPosition = new Point(5, 15); private Size buttonSize = new Size(200, 30); private int distance = 5; private Modes currentMode; public LecturesForm(string folderPath) { InitializeComponent(); buttons = new ChoiseButtons(ButtonTypes.RadioButton, startPosition.X, startPosition.Y, buttonSize.Width, buttonSize.Height, distance); DirectoryInfo directory = new DirectoryInfo(folderPath); lecturesDirectories = directory.GetDirectories(); foreach (DirectoryInfo lectureDirectory in lecturesDirectories) { groupBoxLectures.Controls.Add(buttons.AddNextButton(lectureDirectory.Name)); } SetChooseLectureMode(); } private void button1_Click(object sender, EventArgs e) { if (currentMode == Modes.ChooseLecture) { List<int> selected = buttons.GetSelected(); if (selected.Count == 0) { MessageBox.Show("Выберите лекцию!", "Ошибка!", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } else { currentLectureDirectory = lecturesDirectories[selected[0]]; try { FileStream fileStream = new FileStream(currentLectureDirectory.FullName + "\\lecture", FileMode.Open); StreamReader streamReader = new StreamReader(fileStream); richTextBoxLecture.Text = streamReader.ReadToEnd(); streamReader.Close(); fileStream.Close(); } catch { TestForm.ShowCriticalErrorMessage("Не найден файл с лекцией\nПриложение будет закрыто"); } } SetLecturesMode(); } else { InitForm form = new InitForm(); if (form.ShowDialog() == DialogResult.OK) { new TestForm(currentLectureDirectory.FullName, currentLectureDirectory.Name, form.UserName, this).Show(); } } } private void SetLecturesMode() { currentMode = Modes.Lecture; buttonChoose.Text = "Тест"; richTextBoxLecture.Visible = true; linkLabelResults.Visible = false; groupBoxLectures.Visible = false; richTextBoxLecture.Dock = DockStyle.Fill; linkLabelBack.Visible = true; this.MaximumSize = new Size(); this.MinimumSize = new Size(); this.Size = new Size(739, 419); this.MaximizeBox = true; this.Text = currentLectureDirectory.Name; buttonChoose.Select(); } private void SetChooseLectureMode() { currentMode = Modes.ChooseLecture; linkLabelResults.Visible = true; buttonChoose.Text = "Выбрать"; richTextBoxLecture.Visible = false; groupBoxLectures.Visible = true; linkLabelBack.Visible = false; this.Text = "Выбор лекции"; this.MaximumSize = new Size(739, 419); this.MinimumSize = new Size(739, 419); this.Size = new Size(739, 419); this.MaximizeBox = false; } private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { SetChooseLectureMode(); } private void LecturesForm_VisibleChanged(object sender, EventArgs e) { if (Visible == true) { SetChooseLectureMode(); } } private void linkLabel1_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e) { new ResultsForm().ShowDialog(); } private void panel2_Paint(object sender, PaintEventArgs e) { } } }
Дата добавления: 2014-11-25; Просмотров: 617; Нарушение авторских прав?; Мы поможем в написании вашей работы! Нам важно ваше мнение! Был ли полезен опубликованный материал? Да | Нет |