목록도전 (1052)
도전2022
다양한 영어문장 http://blog.naver.com/bluewater_33
http://social.msdn.microsoft.com/Forums/en/csharpgeneral/thread/1cab307d-2f5a-489f-8653-f5a9e86a6146 using System; using System.Drawing; using System.Drawing.Imaging; using System.Runtime.InteropServices; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { Bitmap bmp = new Bitmap("C:\\Temp\\Sample Pictures\\Tree.jpg"); byte[] b = new byte[bmp.Width * bmp.Height * 2]..
http://threej.co.kr/wordpress/?p=76
http://inhabitat.com/sobi-social-bicycle-sharing-system-makes-it-easy-to-find-and-rent-bikes/sobi-bicycle-solarpanel-keypad/ 시간 남을때 만들어봐야 겠다..ㅋ.
http://cdn.bluestacks.com/bstk-download-success-2.htm
private Brush resourceToBitmap(string p) { //Bitmap img = TJ01B.Properties.Resources.BkFullHd; var bitmap = new BitmapImage(); if (!File.Exists(p)) return null; var source = File.OpenRead(p); bitmap.BeginInit(); bitmap.CacheOption = BitmapCacheOption.OnLoad; bitmap.StreamSource = source; bitmap.EndInit(); source.Close(); source.Dispose(); ImageBrush berriesBrush = new ImageBrush(); berriesBrush...