すもぎのめも

いろいろあったことをメモしています

2018-01-01から1年間の記事一覧

バインディングしたプロパティの値をリソースのキーにする

使い方 <TextBlock Text="{sample:ResourceBinding Path=ResourceName}" /> 実装 using System; using System.ComponentModel; using System.Windows; using System.Windows.Data; using System.Windows.Markup; namespace Sample { /// <summary> /// リソースキーにバインディングするためのマークアップ。 /// </summary> public class Resour</textblock>…

C# で USB メモリの情報を取得する

ManagementObjectSearcher を使用する。(System.Management.dll の参照が必要) var mos = new ManagementObjectSearcher("Select * from Win32_DiskDrive where InterfaceType='USB'"); // SELECT * FROM Win32_PnPEntity where DeviceID Like 'USB%' foreac…