Розроблення застосувань Windows Forms

Інформація про навчальний заклад

ВУЗ:
Національний університет Львівська політехніка
Інститут:
ІКТА
Факультет:
ЗІ
Кафедра:
БІК

Інформація про роботу

Рік:
2016
Тип роботи:
Лабораторна робота
Предмет:
Технологія програмування та створення програмних продуктів
Група:
БІ 11
Варіант:
Варіант 6

Частина тексту файла (без зображень, графіків і формул):

МІНІСТЕРСТВО ОСВІТИ І НАУКИ УКРАЇНИ НАЦІОНАЛЬНИЙ УНІВЕРСИТЕТ «ЛЬВІВСЬКА ПОЛІТЕХНІКА» ІКТА Кафедра БІТ  З В І Т до лабораторної роботи №3 з курсу: «Технології програмування» на тему: «Розроблення застосувань Windows Forms» Варіант № 6 Мета роботи – навчитися створювати програми з графічним інтерфейсом за допомогою бібліотек Windows Forms платформи .NET Framework. Вивчити основні засоби елементів керування Windows Forms та принципи додавання функцій обробників подій для створення графічної взаємодії з користувачем. Завдання 1. Вивчити основні можливості створення застосувань з графічним інтерфейсом за допомогою бібліотек Windows Forms. 2. Дослідити елементи керування наявні в бібліотеках Windows Forms та засоби роботи з ними. 3. Спроектувати зовнішній вигляд гри для розвитку здібностей пам’яті. Остаточна версія програми using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace MemoryMathingGame { public partial class GameWindow : Form { Random Location = new Random(); List<Point> points = new List<Point>(); bool again = false; PictureBox PendingImage1; PictureBox PendingImage2; public GameWindow() { InitializeComponent(); } private void GameWindow_Load(object sender, EventArgs e) { label1.Text = "5"; foreach (PictureBox picture in CardsHolder.Controls) { picture.Enabled = false; points.Add(picture.Location); } foreach (PictureBox picture in CardsHolder.Controls) { int next = Location.Next(points.Count); Point p = points[next]; picture.Location = p; points.Remove(p); } timer1.Start(); timer2.Start(); Card1.Image = Properties.Resources.Card1; DupCard1.Image = Properties.Resources.Card1; Card2.Image = Properties.Resources.Card2; DupCard2.Image = Properties.Resources.Card2; Card3.Image = Properties.Resources.Card3; DupCard3.Image = Properties.Resources.Card3; Card4.Image = Properties.Resources.Card4; DupCard4.Image = Properties.Resources.Card4; Card5.Image = Properties.Resources.Card5; DupCard5.Image = Properties.Resources.Card5; Card6.Image = Properties.Resources.Card6; DupCard6.Image = Properties.Resources.Card6; Card7.Image = Properties.Resources.Card7; DupCard7.Image = Properties.Resources.Card7; Card8.Image = Properties.Resources.Card8; DupCard8.Image = Properties.Resources.Card8; Card9.Image = Properties.Resources.Card9; DupCard9.Image = Properties.Resources.Card9; Card10.Image = Properties.Resources.Card10; DupCard10.Image = Properties.Resources.Card10; Card11.Image = Properties.Resources.Card11; DupCard11.Image = Properties.Resources.Card11; Card12.Image = Properties.Resources.Card12; DupCard12.Image = Properties.Resources.Card12; } private void timer1_Tick(object sender, EventArgs e) { timer1.Stop(); foreach (PictureBox picture in CardsHolder.Controls) { picture.Enabled = true; picture.Cursor = Cursors.Hand; picture.Image = Properties.Resources.Question; } } private void timer2_Tick(object sender, EventArgs e) { int timer = Convert.ToInt32(label1.Text); timer = timer-1; label1.Text = Convert.ToString(timer); if(timer == 0) { timer2.Stop(); } } #region Cards private void Card1_Click(object sender, EventArgs e) { Card1.Image = Properties.Resources.Card1; if(PendingImage1 == null) { PendingImage1 = Card1; } else if(PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card1; } if(PendingImage1 != null && PendingImage2 != null) { if(PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card1.Enabled = false; DupCard1.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard1_Click(object sender, EventArgs e) { DupCard1.Image = Properties.Resources.Card1; if (PendingImage1 == null) { PendingImage1 = DupCard1; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard1; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card1.Enabled = false; DupCard1.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card2_Click(object sender, EventArgs e) { Card2.Image = Properties.Resources.Card2; if (PendingImage1 == null) { PendingImage1 = Card2; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card2; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card2.Enabled = false; DupCard2.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard2_Click(object sender, EventArgs e) { DupCard2.Image = Properties.Resources.Card2; if (PendingImage1 == null) { PendingImage1 = DupCard2; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard2; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card2.Enabled = false; DupCard2.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card3_Click(object sender, EventArgs e) { Card3.Image = Properties.Resources.Card3; if (PendingImage1 == null) { PendingImage1 = Card3; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card3; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card3.Enabled = false; DupCard3.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard3_Click(object sender, EventArgs e) { DupCard3.Image = Properties.Resources.Card3; if (PendingImage1 == null) { PendingImage1 = DupCard3; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard3; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card3.Enabled = false; DupCard3.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card4_Click(object sender, EventArgs e) { Card4.Image = Properties.Resources.Card4; if (PendingImage1 == null) { PendingImage1 = Card4; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card4; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card4.Enabled = false; DupCard4.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard4_Click(object sender, EventArgs e) { DupCard4.Image = Properties.Resources.Card4; if (PendingImage1 == null) { PendingImage1 = DupCard4; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard4; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card4.Enabled = false; DupCard4.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card5_Click(object sender, EventArgs e) { Card5.Image = Properties.Resources.Card5; if (PendingImage1 == null) { PendingImage1 = Card5; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card5; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card5.Enabled = false; DupCard5.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard5_Click(object sender, EventArgs e) { DupCard5.Image = Properties.Resources.Card5; if (PendingImage1 == null) { PendingImage1 = DupCard5; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard5; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card5.Enabled = false; DupCard5.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card6_Click(object sender, EventArgs e) { Card6.Image = Properties.Resources.Card6; if (PendingImage1 == null) { PendingImage1 = Card6; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card6; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card6.Enabled = false; DupCard6.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard6_Click(object sender, EventArgs e) { DupCard6.Image = Properties.Resources.Card6; if (PendingImage1 == null) { PendingImage1 = DupCard6; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard6; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card6.Enabled = false; DupCard6.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card7_Click(object sender, EventArgs e) { Card7.Image = Properties.Resources.Card7; if (PendingImage1 == null) { PendingImage1 = Card7; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card7; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card7.Enabled = false; DupCard7.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard7_Click(object sender, EventArgs e) { DupCard7.Image = Properties.Resources.Card7; if (PendingImage1 == null) { PendingImage1 = DupCard7; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard7; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card7.Enabled = false; DupCard7.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card8_Click(object sender, EventArgs e) { Card8.Image = Properties.Resources.Card8; if (PendingImage1 == null) { PendingImage1 = Card8; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card8; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card8.Enabled = false; DupCard8.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard8_Click(object sender, EventArgs e) { DupCard8.Image = Properties.Resources.Card8; if (PendingImage1 == null) { PendingImage1 = DupCard8; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard8; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card8.Enabled = false; DupCard8.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card9_Click(object sender, EventArgs e) { Card9.Image = Properties.Resources.Card9; if (PendingImage1 == null) { PendingImage1 = Card9; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card9; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card9.Enabled = false; DupCard9.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard9_Click(object sender, EventArgs e) { DupCard9.Image = Properties.Resources.Card9; if (PendingImage1 == null) { PendingImage1 = DupCard9; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard9; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card9.Enabled = false; DupCard9.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card10_Click(object sender, EventArgs e) { Card10.Image = Properties.Resources.Card10; if (PendingImage1 == null) { PendingImage1 = Card10; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card10; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card10.Enabled = false; DupCard10.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard10_Click(object sender, EventArgs e) { DupCard10.Image = Properties.Resources.Card10; if (PendingImage1 == null) { PendingImage1 = DupCard10; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard10; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card10.Enabled = false; DupCard10.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card11_Click(object sender, EventArgs e) { Card11.Image = Properties.Resources.Card11; if (PendingImage1 == null) { PendingImage1 = Card11; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card11; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card11.Enabled = false; DupCard11.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard11_Click(object sender, EventArgs e) { DupCard11.Image = Properties.Resources.Card11; if (PendingImage1 == null) { PendingImage1 = DupCard11; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard11; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card11.Enabled = false; DupCard11.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void Card12_Click(object sender, EventArgs e) { Card12.Image = Properties.Resources.Card12; if (PendingImage1 == null) { PendingImage1 = Card12; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = Card12; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card12.Enabled = false; DupCard12.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } private void DupCard12_Click(object sender, EventArgs e) { DupCard12.Image = Properties.Resources.Card12; if (PendingImage1 == null) { PendingImage1 = DupCard12; } else if (PendingImage1 != null && PendingImage2 == null) { PendingImage2 = DupCard12; } if (PendingImage1 != null && PendingImage2 != null) { if (PendingImage1.Tag == PendingImage2.Tag) { PendingImage1 = null; PendingImage2 = null; Card12.Enabled = false; DupCard12.Enabled = false; ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) + 10); } else { timer3.Start(); } } } #endregion private void timer3_Tick(object sender, EventArgs e) { timer3.Stop(); ScoreCounter.Text = Convert.ToString(Convert.ToInt32(ScoreCounter.Text) - 10); PendingImage1.Image = Properties.Resources.Question; PendingImage2.Image = Properties.Resources.Question; PendingImage1 = null; PendingImage2 = null; } private void button1_Click(object sender, EventArgs e) { GameWindow_Load(sender, e); } } } Результат виконання завдання /
Антиботан аватар за замовчуванням

08.05.2018 22:05-

Коментарі

Ви не можете залишити коментар. Для цього, будь ласка, увійдіть або зареєструйтесь.

Ділись своїми роботами та отримуй миттєві бонуси!

Маєш корисні навчальні матеріали, які припадають пилом на твоєму комп'ютері? Розрахункові, лабораторні, практичні чи контрольні роботи — завантажуй їх прямо зараз і одразу отримуй бали на свій рахунок! Заархівуй всі файли в один .zip (до 100 МБ) або завантажуй кожен файл окремо. Внесок у спільноту – це легкий спосіб допомогти іншим та отримати додаткові можливості на сайті. Твої старі роботи можуть приносити тобі нові нагороди!
Нічого не вибрано
0%

Оголошення від адміністратора

Антиботан аватар за замовчуванням

Подякувати Студентському архіву довільною сумою

Admin

26.02.2023 12:38

Дякуємо, що користуєтесь нашим архівом!