Quantcast
Channel: C#タグが付けられた新着記事 - Qiita
Browsing all 9309 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

.NET Core 3.1 GUIコントロール

■初めに.NET Core 3.1とVisual Studioで基本的なコントロールを使ってみます。■環境Windows 10Visual Studio 2019.NET Core...

View Article


Image may be NSFW.
Clik here to view.

いいねが欲しけりゃコードを書くな

分析適当なので,面白半分で読んでください.タイトルは興味を持ってもらえるうように強い書き方をしました.いいね数が多い記事ってコード少ないな?🤔暇なときにQiitaのトレンドを見ることが多いのですが,ふとしたときに,記事に与えられたいいね数と掲載されているソースコード数は正の相関関係にないのでは?という疑問がわきました.Qiitaには実装上のテクニックを教わったりもするので,実装中心の記事が埋もれてい...

View Article


Image may be NSFW.
Clik here to view.

C# - キー操作ランチャーをつくってみた

機能準備としてテキストファイルにコマンドを登録しておく。登録した該当キーを押すとコマンドを実行し、自身のプログラムは終了する。画面キャプチャやってることキーボードフック多重起動防止登録済みのキーが押されたら、タイマーを仕掛け1、フックを外すとともに、事前登録された処理を実行する。ソースコードShortcutKeyboard.csusingSystem;usingSystem.Collections....

View Article

Image may be NSFW.
Clik here to view.

【Unity Editor拡張 with Odin】 Addressable AssetReferenceのプレビューを表示する

環境Unity 2019.2.17f1Addressable 1.5Odin Inspector 2.1.8 (有料プラグイン)AssetReferenceって何を参照しているのか分かりにくい。。。名前を設定している場合はまだ分かりやすいですが、フォルダを指定している場合フルパスが表示されるのでかなり分かり辛いです。それを有料プラグインのOdinを使って解決してみようと思います。まずは Before...

View Article

Image may be NSFW.
Clik here to view.

cscの作法

概要cscの作法、調べてみた。環境.NET Framework 2,0写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { form1() { Text = "hello"; ClientSize = new Size(200, 200); Label la1 =...

View Article


Image may be NSFW.
Clik here to view.

C# - AutomationElementの情報を取得するツールをつくった(Windows10)

機能クリックした座標にあるコントロールの情報(実行パスとAutomationElementInformation)を取得します。(ウィンドウハンドルを取得して、該当座標を含む、子AutomationElementを再帰的に探します。重なっている場合はどれか1つになります。)AutomationElementの使い方は、手前味噌ですがWindows10でBASIC認証画面にIDとパスワードを自動入力す...

View Article

SharePoint リストを CSOM で取得する

SharePoint リスト(カスタムリスト、ドキュメントライブラリ、etc...)を C# の CSOM(Client Side Object Model)で取得します。 今回は特定の SharePoint リストを取得する場合のコードを紹介します。環境.NET Framework 4.6.1Microsoft.SharePointOnline.CSOM...

View Article

Image may be NSFW.
Clik here to view.

Shaderを一切いじらずにPortal表現を行う

あけましておめでとうございます。でもわたしのクリスマスはまだ来てないのでAR Advent Calendar 2019に投稿します。PortalAugmented Reality Portal -...

View Article


Image may be NSFW.
Clik here to view.

cscの作法 その2

概要cscの作法、調べてみた。イベントやってみた。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { form1() { Text = "hello"; ClientSize = new Size(200, 200); Button btn1 = new...

View Article


Image may be NSFW.
Clik here to view.

cscの作法 その3

概要cscの作法、調べてみた。 fizzbuzzやってみた。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { form1() { Text = "fizzbuzz"; ClientSize = new Size(300, 300); Button btn1 =...

View Article

Image may be NSFW.
Clik here to view.

cscの作法 その4

概要cscの作法、調べてみた。 fizzbuzzやってみた。 textbox使ってみた。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { TextBox bo1; form1() { Text = "fizzbuzz"; ClientSize = new...

View Article

Image may be NSFW.
Clik here to view.

cscの作法 その5

概要cscの作法、調べてみた。練習問題やってみた。練習問題九九の表を作れ。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { TextBox bo1; form1() { Text = "fizzbuzz"; ClientSize = new Size(300,...

View Article

Image may be NSFW.
Clik here to view.

cscの作法 その6

概要cscの作法、調べてみた。練習問題やってみた。練習問題ズンドコやってみて。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { TextBox bo1; form1() { Text = "fizzbuzz"; ClientSize = new Size(300,...

View Article


Image may be NSFW.
Clik here to view.

cscの作法 その7

概要cscの作法、調べてみた。 graphicやってみた。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { public form1() { this.Text = "図"; this.BackColor = SystemColors.Window;...

View Article

Image may be NSFW.
Clik here to view.

cscの作法 その8

概要cscの作法、調べてみた。画像表示してみた。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { form1() { Text = "WebBrowser"; ClientSize = new Size(420, 320); PictureBox pb0 = new...

View Article


Image may be NSFW.
Clik here to view.

cscの作法 その9

概要cscの作法、調べてみた。練習問題やってみた。練習問題日の丸を描け。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { form1() { Text = "maru"; ClientSize = new Size(300, 300); } protected...

View Article

Image may be NSFW.
Clik here to view.

cscの作法 その10

概要cscの作法、調べてみた。練習問題やってみた。練習問題sin波を描け。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { form1() { Text = "sin"; ClientSize = new Size(300, 300); } protected...

View Article


Image may be NSFW.
Clik here to view.

cscの作法 その11

概要cscの作法、調べてみた。練習問題やってみた。練習問題カレンダーを表示せよ。写真サンプルコードusing System; using System.CodeDom; using System.CodeDom.Compiler; using System.Reflection; using System.Windows.Forms; using System.Drawing; class...

View Article

Image may be NSFW.
Clik here to view.

cscの作法 その12

概要cscの作法、調べてみた。練習問題やってみた。練習問題時計を作れ。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; class form1: Form { Label la1; form1() { Text = "Timer"; ClientSize = new Size(300, 200); la1...

View Article

Image may be NSFW.
Clik here to view.

cscの作法 その16

概要cscの作法、調べてみた。 datagrid使ってみた。写真サンプルコードusing System; using System.Windows.Forms; using System.Drawing; using System.Data.OleDb; using System.Data; class form1: Form { form1() { Text = "DataGridView";...

View Article
Browsing all 9309 articles
Browse latest View live