wpf 에 swf 파일 올리기
로컬에 존재하는 swf 파일을 wpf에 올리고 싶은 경우 WebBrowser wb = new WebBrowser(); wb.Url = new Uri(@"swf 파일 경로",UriKind.RelativeOrAbsolute); WindowsFormsHost host = new WindowsFormsHost(); host.Child = wb; Grid grid = new Grid(); grid.Children.Add(host); Content = grid; 웹에 있는 swf 를 올리고 싶을 때는 WebBrowser wb = new WebBrowser(); wb.documentText = ""; WindowsFormsHost host = new WindowsFormsHost(); host.Child = wb; ..
WPF
2008. 2. 15. 11:07