전체 글(21)
-
[Monogame] Monogame Image
Week 7-2: Monogame String, Images (2021-10-21) 1. MonoString 2. GameComponents class 2.1. Create class 2.2. Make class public 2.3. Copy using statements from Game 1 class 2.4. Inherits from Parent Class GameComponent, DrawbleGameComponent Relationship??? Problem happens => Why? Solution: Generate constructor with base Reason: DrawableGameComponent doesn’t have default constructor, we need to gen..
2021.10.28 -
[Monogame] Introducing Monogame
Week 7-1: Introducing Monogame (2021-10-21) 1. Monogame Monogame based on Xna Library Similar to C# Windows Form games 2. Game 1 Logic Initialize: Set Basic Variables… LoadContent: Load Resources, contents Update: Game Logic Draw: Only Drawing things will be here These Methods have sequence to be executed Initialize è LoadContent è Update è Draw è Update è Draw è … Update and Draw is executed 60..
2021.10.24 -
[C#] Import dll file in client side, Interface
Import dll file in client side 1. How to add user control by code How to import dll file: Add References Using statements allow us not to use fully qualified name using ClassLibraryApplication; ... // fully qualified name ClassLibraryApplication.WorldClock worldClock = new ClassLibraryApplication.WorldClock(); // by Using using statement you don't have to use WorldClock worldClock = new WorldClo..
2021.10.18 -
[C#] MenuStrip, SaveFileDialog, OpenFileDialog, PcitureBox, Class Library (.NET Framework) + Custom Control
1. MenuStrip Shortcut using Alt: “&Save” = Save (Alt + S) → Navigating with keyboard Shortcut using Ctrl: ShortcutKeys Property 2. SaveFileDialog OpenDialogbox, SaveDialogBox just pass file path FileFormat is important! è filename always include Filepath Always surround dialog with try-catch private void saveToolStripMenuItem_Click(object sender, EventArgs e) { DialogResult dialogResult = dlgSav..
2021.10.16 -
캐나다 학비 지불 방법
캐나다 생활비 대부분을 차지하는 학비를 신용카드로 지불하면 평소보다 큰 혜택을 받을 수 있습니다. 다만, 이민자 혹은 유학생으로써 캐나다 신용카드 지불한도 (Limitation)가 $1000로 제한되는 경우가 대부분이므로 $1000 이상의 학비는 지불하기 어려운 실정입니다. 때문에 지불한도를 일시적으로 $1000 이상으로 증가시켜 학비를 납부하는 방법을 알려드리겠습니다. 학교별로 지불 방법이 상이한 점 유의 바랍니다. 저는 Kitchener-Waterloo 지역에 위치한 Conestoga College에 재학중인 유학생이고 Royal Bank of Canada(RBC)를 사용중입니다. 때문에 모든 Case는 Conestoga College 및 RBC를 기준으로 설명드리겠습니다. 각각 case 별로 캐나다..
2021.10.08 -
[C#] Inheritance, Polymorphism, Abstraction
Goal Learn how to use Inheritance and P olymorphism Demo PolymorphismApp - Get Area of Rectangles and Circles, and Show a message box for the total of the area Summary Design with inheritance and polymorphism, then you can get more effective code from time to time. Basic UI Design Version 1. No Inheritance, No Polymorphism JYPolymorphism.cs using System; using System.Collections.Generic; using S..
2021.10.08