3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Visual Studio CodeでC#のWindowsFormに雪(っぽいの)を降らしてみる

Last updated at Posted at 2025-01-17

はじめに

C#のWindowsFormアプリケーションプロジェクトをVisual Studio Codeでデバッグ実行開始できるようにするまでの備忘録です。前回の記事でとりあえずデバッグ開始できたので、今回はWindowsFormに雪(っぽいの)を降らしてみます。

VSCodeや.NETCore、C#とそのVSCodeエクステンションはコンソールアプリケーションがデバッグ実行できる程度には用意されていることを前提とします。

前提条件

Windows11 Pro 22H2 22621.4169
VSCode(Visual Studo Code) 1.86.1
C# 12
dotnet-sdk-8.0.206-win-x64

VSCodeの拡張機能

.NET Install Tool 2.0.2 Microsoft
Base language support for C# 2.18.16 Microsoft

C# Windowsフォームアプリケーションプロジェクトの作成

たいへんお手数ですが、前回の記事をご参照ください。

どうやって降らせるの?

とりあえず乱数をつかって雪片(っぽい白い円)の直径と座標と下降位置差分を計算して、Windowsフォームに描画してみます。これはこちらの記事のロジックの原型としたものです。

お題のソースコード

Snowflake.cs

雪片クラスを下記のように追加します。

Snowflake.cs
public class Snowflake
{
    public int X { get; set; }
    public int Y { get; set; }
    public int Speed { get; set; }
    public int Size { get; set; }
    private static Random random = new Random();

    public Snowflake(int width)
    {
        X = random.Next(width);
        Y = random.Next(-50, -10);
        Speed = random.Next(1, 5);
        Size = random.Next(2, 6);
    }

    public void Update(int height)
    {
        Y += Speed;
        if (Y > height)
        {
            Y = random.Next(-50, -10);
            Speed = random.Next(1, 5);
            Size = random.Next(2, 6);
        }
    }
}

ここで使っているrandom.nextの詳細です。

WinForm.cs

とりあえず前回の記事では空のフォームであったのを雪が降るフォームにします。

修正前

WinForm.cs
using System;
using System.Windows.Forms;
using Microsoft.VisualBasic;

namespace WinFormsApp
{
    public class WinForm : Form
    {
        public WinForm()
        {
        }
    }
}

修正後

WinForm.cs
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;


namespace WinFormsApp
{
    public class WinForm : Form
    {

        private System.Windows.Forms.Timer timer;
        private List<Snowflake> snowflakes;
        private int numberOfSnowflakes = 100;
        public WinForm()
        {
            this.DoubleBuffered = true;
            this.ClientSize = new Size(1200, 600);
            this.Text = "Snowfall";
            this.BackColor =Color.Black;
    
            snowflakes = new List<Snowflake>();
            for (int i = 0; i < numberOfSnowflakes; i++)
            {
                snowflakes.Add(new Snowflake(this.ClientSize.Width));
            }
    
            timer = new System.Windows.Forms.Timer();
            timer.Interval = 30;
            timer.Tick += new EventHandler(OnTimerTick);
            timer.Start();
        }

        private void OnTimerTick(object? sender, EventArgs e)
        {
            foreach (var snowflake in snowflakes)
            {
                snowflake.Update(this.ClientSize.Height);
            }
            this.Invalidate();
        }
    
        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);
            Graphics g = e.Graphics;
            foreach (var snowflake in snowflakes)
            {
                g.FillEllipse(Brushes.White, snowflake.X, snowflake.Y, snowflake.Size, snowflake.Size);
            }
        }
    }
}

タイマー割込みで雪片の座標を書き換え、ペイントイベントのオーバーライドで雪片の円を描画という感じでしょうか。

実行イメージ

実行時の様子は下記の感じです。

CsWinForm2.png

CsWinForm3.gif

おわりに

いかがでしたでしょうか?なにかの役にたてば幸いです。

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?