control
Lua - Control Statement
Lua - Control Statement
2011.02.23Ref : http://www.lua.org/manual/5.1/ * Compare if (left < right) then elseif (left == right) then else end * Loop for i = 1, 10, 1 do end * Loop for array for item in expression do end * Function definition function foo() end * Print message print("Hello world!") ** Wow Register this:RegisterEvent("PLAYER_TARGET_CHANGED")
Silverlight – Custom control
Silverlight – Custom control
2009.07.03이번엔 실버라이트 사용자 컨트롤을 만들어봅니다. 설명이 많이 부족하지만 따라하시다보면 성공하실수..... 사실 제가 부족해서 설명이 많이 부족하네요ㅠㅠ Generic.xaml Custom Control의 기본 모양을 정의하는 파일 Xmlns와 xmlns:x는 page.xaml에서 가져온다 public class MyControl : Control { public MyControl() { this.DefaultStyleKey = typeof(MyControl); } } Control을 상속 받고 기본 스타일 키를 현재 형식의 타입을 지정한다. 재정의할 메소드가 있는데, OnApplyTemplate 을 override 하여 메소드를 만든다 public override void OnApplyTemplate()..
Silverlight Custom control
Silverlight Custom control
2009.06.23이번에는 Silverlight의 컨트롤을 정의해서 만들어봅니다. 예전에 강의들을 때 작성하고 다시보니 무슨소린지 모르겠네요.. ㅋㅋㅋ 그래도 전혀 무지한 것 보단 캡쳐라도 약간 있으니 ㅠㅠ 나중에 약간이라도 도움될 듯.. 부족하지만 1%라도 얻을게 있을지 모르니 정리 안된 상태로 등록합니다... ㅋㅋ Generic.xaml Custom Control의 기본 모양을 정의하는 파일 Xmlns와 xmlns:x는 page.xaml에서 가져온다 public class MyControl : Control { public MyControl() { this.DefaultStyleKey = typeof(MyControl); } } Control을 상속 받고 기본 스타일 키를 현재 형식의 타입을 지정한다. 재정의할 메소드..
Silverlight domain access control
Silverlight domain access control
2009.04.28실버라이트에서는 clientaccesspolicy.xml 파일을 이용해서 사용자 접근을 제어한다. 다음과 같이 예를 보면, http://hugeflow.com/clientaccesspolicy.xml silverlight 호스트 하는 서버의 사용자 접근에 대한 접근제어를 지정한다 FLEX에서의 접근제어는 crossdomain.xml 파일을 이용한다. http://www.yahoo.com/crossdomain.xml
iTunes Data Grid Skin for ASP.NET GridView, ListView Control
iTunes Data Grid Skin for ASP.NET GridView, ListView Control
2009.02.02Demo page : http://mattberseth2.com/demo/Default.aspx?Name=iTunes+Data+Grid+Skin&Filter=All 위와 같은 형태로 GridView, ListView를 출력하도록 도와주네요. Sort 되는 부분은 jQuery를 혼용해서 처리하도록 했구요 . 가져다 쓰기 좋은 내용이라 스크랩을 ^ ^ Ref. http://mattberseth.com/blog/2008/10/itunes_data_grid_skin.html?source=feed
HTTP Header Cache Control
HTTP Header Cache Control
2007.08.14http://www.mnot.net/cache_docs/ 웹 개발을 하다보면 상당히 자주 사용하게 되는 것이 Cache를 어떻게 컨트롤할 지 결정하는 것이다. 이는 HTTP 헤더를 조작해야하는 작업이기 때문에 HTTP 헤더를 찾아보는 일이 많다. 이런 부분을 정리해둔 페이지가 있다. 위 링크를 활용하도록..