.NET

DataGridViewのAutoGenerateColumnsで利用できる属性(WinForms)

DisplayNameAttributeでDataGridViewColumn.HeaderTextが指定できる。 BrowsableAttributeにfalseを指定で、自動生成から除外できる。 c# - Is there an Attribute I can use in my class to tell DataGridView not to create a column for it when bound to…

DataGridViewのスクロールバーを有効にする(WinForms)

DataGridView1.Controls[0].Enabled = true; // Index zero is the horizontal scrollbar DataGridView1.Controls[1].Enabled = true; // Index one is the vertical scrollbar DataGridView Vertical Scroll is disabled. https://social.msdn.microsoft.co…

Labelのダブルクリックでコピー(WinForms)

Vista以降.NetのフォームのLabelをダブルクリックすると、そのTextの内容がクリップボードにコピーされる。winforms - Is there any way to disable the "double-click to copy" functionality of a .NET label? - Stack Overflow https://stackoverflow.com…

Framework バージョン

こういうのはサポート切れてから見たくなったりして、でもってその時にはサポート切れたものに関する情報はなくなってたりして、だからメモしておく。 .NET Framework のバージョンおよび依存関係 https://msdn.microsoft.com/ja-jp/library/bb822049(v=vs.1…

Windowsサービスとかマルチスレッドとかてきとーメモ

WindowsサービスをC#で書く - backyard of 伊勢的新常識 http://d.hatena.ne.jp/iseebi/20080603/p1 Visual Studio Magazine:初めて作る.NET Windowsサービス (1/7) - ITmedia エンタープライズ http://www.itmedia.co.jp/enterprise/articles/0502/01/news…

memo ASP.NET IIS ワーカープロセス

アプリケーション プールのリサイクルの設定 http://msdn.microsoft.com/library/ja/default.asp?url=/library/ja/cpguide/html/cpconrecyclingapplicationpoolsettings.asp Visual Studio User Group > フォーラム > ASP.NET のワーカー プロセス http://vs…