c#을 활용하여 윈도우 어플리케이션을 개발 하던 도중 ,
html 페이지를 보여주야 되는 경우가 생겼으며, html내에 있는 flash 컨텐츠가 종료 되었을 때 어플리케이션도 같이
종료가 도어야 하는 상황이 발생 하였습니다.
그래서 구글링 하던 도중 좋은 예가 있어서 이렇게 올려 봅니다.
c#에서 javascript 이벤트를 catch하여 application 단에서 처리를 할 수 있을거 같습니다.
아레주소 눌러 보시면 보다 자세한 내용 보실 수 있습니다.
다음은 주요 소스 입니다.
결론적으로 WebBrowser를 확장해서 처리를 하더군요 . 아래 소스 보시면 이해 되실거라 생각 됩니다.
//Extend the WebBrowser control
public class ExtendedWebBrowser : WebBrowser
{
// Define constants from winuser.h
private const int WM_PARENTNOTIFY = 0x210;
private const int WM_DESTROY = 2;
AxHost.ConnectionPointCookie cookie;
WebBrowserExtendedEvents events;
protected override void WndProc(ref Message m)
{
switch (m.Msg)
{
case WM_PARENTNOTIFY:
if (!DesignMode)
{
if (m.WParam.ToInt32() == WM_DESTROY)
{
Message newMsg = new Message();
newMsg.Msg = WM_DESTROY;
// Tell whoever cares we are closing
Form parent = this.Parent as Form;
if (parent!=null)
parent.Close();
}
}
DefWndProc(ref m);
break;
default:
base.WndProc(ref m);
break;
}
}
public class ExtendedWebBrowser : WebBrowser
{
// Define constants from winuser.h
private const int WM_PARENTNOTIFY = 0x210;
private const int WM_DESTROY = 2;
AxHost.ConnectionPointCookie cookie;
WebBrowserExtendedEvents events;
protected override void WndProc(ref Message m)
{
switch (m.Msg)
{
case WM_PARENTNOTIFY:
if (!DesignMode)
{
if (m.WParam.ToInt32() == WM_DESTROY)
{
Message newMsg = new Message();
newMsg.Msg = WM_DESTROY;
// Tell whoever cares we are closing
Form parent = this.Parent as Form;
if (parent!=null)
parent.Close();
}
}
DefWndProc(ref m);
break;
default:
base.WndProc(ref m);
break;
}
}
댓글 1개
13년 전
감사요
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 4830 |
임페리얼웹
|
13년 전 | 1355 | |
| 4829 |
임페리얼웹
|
13년 전 | 701 | |
| 4828 | 13년 전 | 3459 | ||
| 4827 |
|
13년 전 | 1218 | |
| 4826 | 13년 전 | 2729 | ||
| 4825 | 13년 전 | 1065 | ||
| 4824 |
gnuskin쩜net
|
13년 전 | 753 | |
| 4823 | 13년 전 | 807 | ||
| 4822 |
visualp
|
13년 전 | 678 | |
| 4821 |
다케미카코
|
13년 전 | 1255 | |
| 4820 | 13년 전 | 1343 | ||
| 4819 | 13년 전 | 2654 | ||
| 4818 |
크라이스트
|
13년 전 | 4234 | |
| 4817 |
임페리얼웹
|
13년 전 | 694 | |
| 4816 | 13년 전 | 3257 | ||
| 4815 |
하모니칼수
|
13년 전 | 639 | |
| 4814 | 13년 전 | 1101 | ||
| 4813 | 13년 전 | 700 | ||
| 4812 |
임페리얼웹
|
13년 전 | 1080 | |
| 4811 |
임페리얼웹
|
13년 전 | 1823 | |
| 4810 | 13년 전 | 1142 | ||
| 4809 | 13년 전 | 617 | ||
| 4808 | 13년 전 | 1277 | ||
| 4807 |
너는나의봄이다
|
13년 전 | 892 | |
| 4806 | 13년 전 | 1286 | ||
| 4805 | 13년 전 | 1766 | ||
| 4804 | 13년 전 | 1063 | ||
| 4803 |
한번잘해보자
|
13년 전 | 712 | |
| 4802 | 13년 전 | 1902 | ||
| 4801 |
꼬꼬아부지
|
13년 전 | 1180 | |
| 4800 | 13년 전 | 763 | ||
| 4799 |
|
13년 전 | 705 | |
| 4798 | 13년 전 | 1066 | ||
| 4797 |
한번잘해보자
|
13년 전 | 604 | |
| 4796 | 13년 전 | 1715 | ||
| 4795 | 13년 전 | 994 | ||
| 4794 |
|
13년 전 | 1013 | |
| 4793 |
|
13년 전 | 649 | |
| 4792 | 13년 전 | 1287 | ||
| 4791 | 13년 전 | 2094 | ||
| 4790 |
|
13년 전 | 609 | |
| 4789 |
한번잘해보자
|
13년 전 | 510 | |
| 4788 |
|
13년 전 | 682 | |
| 4787 | 13년 전 | 3274 | ||
| 4786 |
한번잘해보자
|
13년 전 | 745 | |
| 4785 | 13년 전 | 1298 | ||
| 4784 | 13년 전 | 1074 | ||
| 4783 |
|
13년 전 | 719 | |
| 4782 | 13년 전 | 7728 | ||
| 4781 |
크라운엠버서더
|
13년 전 | 1097 | |
| 4780 | 13년 전 | 1749 | ||
| 4779 | 13년 전 | 750 | ||
| 4778 | 13년 전 | 1084 | ||
| 4777 | 13년 전 | 911 | ||
| 4776 | 13년 전 | 1887 | ||
| 4775 | 13년 전 | 3318 | ||
| 4774 | 13년 전 | 1530 | ||
| 4773 | 13년 전 | 3235 | ||
| 4772 | 13년 전 | 1409 | ||
| 4771 | 13년 전 | 3853 | ||
| 4770 | 13년 전 | 1397 | ||
| 4769 | 13년 전 | 894 | ||
| 4768 | 13년 전 | 1863 | ||
| 4767 | 13년 전 | 2642 | ||
| 4766 | 13년 전 | 1562 | ||
| 4765 | 13년 전 | 1372 | ||
| 4764 | 13년 전 | 3131 | ||
| 4763 | 13년 전 | 1159 | ||
| 4762 |
|
13년 전 | 716 | |
| 4761 | 13년 전 | 1607 | ||
| 4760 | 13년 전 | 843 | ||
| 4759 |
NTYPE
|
13년 전 | 5165 | |
| 4758 |
프로프리랜서
|
13년 전 | 823 | |
| 4757 |
프로프리랜서
|
13년 전 | 1208 | |
| 4756 | 13년 전 | 805 | ||
| 4755 |
원시인교주
|
13년 전 | 829 | |
| 4754 |
there007
|
13년 전 | 948 | |
| 4753 | 13년 전 | 1764 | ||
| 4752 |
세상의중심
|
13년 전 | 1568 | |
| 4751 | 13년 전 | 1296 | ||
| 4750 | 13년 전 | 1496 | ||
| 4749 |
또다른세상
|
13년 전 | 3652 | |
| 4748 | 13년 전 | 760 | ||
| 4747 |
cula100jak
|
13년 전 | 1647 | |
| 4746 | 13년 전 | 1473 | ||
| 4745 |
|
13년 전 | 613 | |
| 4744 |
designcity
|
13년 전 | 739 | |
| 4743 | 13년 전 | 616 | ||
| 4742 |
|
13년 전 | 8346 | |
| 4741 | 13년 전 | 833 | ||
| 4740 | 13년 전 | 1637 | ||
| 4739 | 13년 전 | 1307 | ||
| 4738 |
|
13년 전 | 740 | |
| 4737 |
Xerro
|
13년 전 | 483 | |
| 4736 | 13년 전 | 3720 | ||
| 4735 |
keith
|
13년 전 | 533 | |
| 4734 |
|
13년 전 | 684 | |
| 4733 | 13년 전 | 1742 | ||
| 4732 |
|
13년 전 | 1244 | |
| 4731 |
|
13년 전 | 1294 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기