C#やモバイルアプリ関係のログ

C#やXamarin、スマートフォンアプリのことを書いておきたいと思います

2020-12-20から1日間の記事一覧

c# Windows_Forms 画面をキャプチャ 画面キャプチャにスタンプを押す

C# Windows Forms サンプル ・ウィンドウ透過で枠を表現 ・画面キャプチャ取得 表示 ・画像にスタンプを押す 動作イメージ github.com MainForm.cs using System; using System.Drawing; using System.Windows.Forms; namespace WindowsFormsScreenCap { /// <summary></summary>…

c# Windows_Forms 背景が透明なウィンドウ

C# Windows Forms 透明なウィンドウ github.com 方法① Form1.cs using System.Drawing; using System.Windows.Forms; namespace TransparentWindowSample { public partial class Form1 : Form { public Form1() { InitializeComponent(); //ウィンドウを透…