2011-10-01から1ヶ月間の記事一覧

WPF (C#) Task

索引サイト using System.Threading.Tasks;namespace WpfApplication1 { /// /// MainWindow.xaml の相互作用ロジック /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void button1_Click(object …

MP3 MIDI WPFメモ

索引サイト 参考 http://dobon.net/vb/dotnet/programing/playmidifile.html http://dobon.net/vb/dotnet/programing/playwavfile.html http://akabeko.sakura.ne.jp/blog/category/programing/wpf/

Winamp MP3GAIN

索引サイト http://www.winamp.com/media-player/japanese http://mp3gain.sourceforge.net/download.php アイコン関係 http://www.greva.jp/softs/index/11564 http://surviveplus.net/products/windowssofts/?name=foldericonchanger

WPF Style DataRow

索引サイト 「普通に足し算」 <Window.Resources> <Style x:Key="xCenter" TargetType="{x:Type TextBlock}"> <Setter Property="Margin" Value="2"/> <Setter Property="TextAlignment" Value="Center"/> </Style> <Style x:Key="xRight" TargetType="{x:Type TextBlock}"> <Setter Property="Margin" Value="2"/> </setter></window.resources>

DAW VX7

索引サイト dll のインストール場所

WPF 3D -1-

索引サイト StreamReader public class ClassDSN { static string DSN; public string classSetDSN { get { return DSN; } set { DSN = value; } } } private void setEnv() { string w_text = null; using (StreamReader w_stream = new StreamReader("envA…

WPF Canvas 組込みメモ

索引サイト <Viewport2DVisual3D.Visual> <Canvas HorizontalAlignment="Left" VerticalAlignment="top" Width="200" Height="200" Background="Wheat"> <Rectangle Width="200" Height="200" Stroke="Black" StrokeThickness="2" /> </rectangle></canvas></viewport2dvisual3d.visual>

WPF XPS Page

索引サイト private void button1_Click(object sender, RoutedEventArgs e) { var w_fxDoc = new FixedDocument(); var w_fxPage = new FixedPage(); var w_pgContent = new PageContent(); var w_page1 = new WpfApplication1.Page1(); var w_page2 = new …