본문 바로가기

WPF

WPF toolkit theme 사용하기 Windows Presentation Foundation (WPF) CodePlex Home Register | Sign In | CodePlex Home Home Downloads Discussions Issue Tracker Source Code Stats People License Close RSS All Project Updates Discussions Issue Tracker Releases Reviews Source Code Wiki RSS Show Page Comments | Print View | Page Info | Change History (all pages) Home WPF Themes WPF ThemesDownload the WPF Themes in the WPF Futures r.. 더보기
wpf toolkit * codeplex homepage http://wpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29117 2009/06 까지 release 되었음. 더보기
image metadata WPF wpf에서는 jpeg 뿐 만이 아니라 여러 파일에서 메타데이터를 기록하도록 도움을 준다. JpegBitmapEncoder클래스를 사용하여 jpeg 인코딩을 할 수 있고, Metadata Property를 사용하여 메타데이터 기록을 가능하게 한다. Metadata는 BitmapMetadata르는 클래스형식으로 정의되어 있다. 다음 예제에서는 IFD 및 Exif 스키마를 사용하여 메타데이터를 TIFF(Tagged Image File Format) 이미지에 쓰는 방법을 보여 줍니다. BitmapMetadata tiffMetadata = new BitmapMetadata("tiff"); tiffMetadata.SetQuery("/ifd/{ushort=1000}", 9999); tiffMetadata.Se.. 더보기
Data Binding in WPF 1. DataBinding을 위한 기초. http://msdn.microsoft.com/ko-kr/magazine/cc163299.aspx 2. DataBinding 이 가능한 class 만들기. 예제[System.ComponentModel.Bindable(true)] public string MyName { get { return _myName; } set { if( _myName != value ) { _myName = value; OnPropertyChanged("MyName"); } } } Via: http://support.microsoft.com/kb/327413 더보기