일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- Kotlin
- string
- numpy
- Mac
- Apache
- Redshift
- math
- Google Excel
- matplotlib
- Tkinter
- google apps script
- dataframe
- PostgreSQL
- Google Spreadsheet
- Java
- 파이썬
- hive
- PySpark
- PANDAS
- Excel
- Python
- GIT
- list
- SQL
- django
- array
- c#
- Github
- gas
- Today
- Total
목록C#/C# Samples (4)
달나라 노트
using System; using System.Windows.Forms; using System.Drawing; class ParabolicMotion { public static void Main() { // Constants // Constants cts = new Constants(); Form fm = new Form(); PictureBox pb = new PictureBox(); Image img_bg_day = Image.FromFile(cts.dir_img_bg_day); double ball_x = cts.ball_initial_x; double ball_y = cts.ball_initial_y; double ball_velocity_x = cts.ball_initial_velocity..
using System; using System.Windows.Forms; using System.Drawing; using WMPLib; class CardCatch { public static void Main() { // Constatns // Constants cts = new Constants(); Form fm = new Form(); PictureBox pb_30 = new PictureBox(); PictureBox pb_20 = new PictureBox(); PictureBox pb_15 = new PictureBox(); Timer tm_30 = new Timer(); Timer tm_20 = new Timer(); Timer tm_15 = new Timer(); int min_30 ..
주사위 번호 맞추기 화면 image source using System; using System.Windows.Forms; using System.Drawing; using System.IO; class DiceCatch { public static void Main() { // Constants // Constants cts = new Constants(); Form fm = new Form(); FlowLayoutPanel flp = new FlowLayoutPanel(); PictureBox pb_dice_main = new PictureBox(); Button btn_roll = new Button(); Button btn_confirm = new Button(); Label lbl_result ..
30분 짜리, 20분 짜리, 15분 짜리 타이머 using System; using System.Windows.Forms; using WMPLib; class MyProgram { public static void Main() { // Constants // int form_width = 400; int form_height = 200; int label_width = 100; int label_height = 30; int btn_width = 100; int btn_height = 30; String dir_current = System.Environment.CurrentDirectory.ToString(); String dir_mp3 = "\\mp3\\sample.mp3"; dir_mp3 = dir..