Blog Content

  • 62.SilverLight3 - ProgressBar

    Category Silverlight on 2009. 12. 2. 15:06

    ProgressBar - 작업 진행 상태를 표시 할 때 많이 사용되는 컨트롤입니다. MainPage.xaml MainPage.xaml.cs namespace ProgressBar { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); //버튼 이벤트 btnGo.Click += new RoutedEventHandler(btnGo_Click); //진행시간표시 prsBar.ValueChanged += new RoutedPropertyChangedEventHandler(prsBar_ValueChanged); } void prsBar_ValueChanged(object sender, RoutedProper..

    Read more
  • 61.SilverLight3 - ListBox

    Category Silverlight on 2009. 12. 2. 14:48

    ListBox - ComboBox와 같은 역활을 하는 컨트롤입니다. [ 60.SilverLight3 - ComboBox ] MainPage.xaml MainPage.xaml.cs namespace ListBox { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); lstFavorites.SelectionChanged += new SelectionChangedEventHandler(lstFavorites_SelectionChanged); } void lstFavorites_SelectionChanged(object sender, SelectionChangedEventArgs e) { //ListBo..

    Read more
  • 60.SilverLight3 - ComboBox

    Category Silverlight on 2009. 12. 2. 14:01

    ComboBox - 여러개의 항목중에서 하나를 선택하여 표시하는 컨트롤입니다. ( 데이터 바인딩 가능 ) MainPage.xaml MainPage.xaml.cs namespace ComboBox { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); btnSelect.Click += new RoutedEventHandler(btnSelect_Click); } void btnSelect_Click(object sender, RoutedEventArgs e) { //Content 값 가저오는 방법입니다. (텍스트, 이미지, 미디어, 도형등 사용) //선택된 항목을 출력하는 방법으로 이는 TextBloc..

    Read more
  • 59.SilverLight3 - ScrollBar

    Category Silverlight on 2009. 12. 2. 12:10

    MainPage.xaml MainPage.xaml.cs public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); sb.ValueChanged += new RoutedPropertyChangedEventHandler(sb_ValueChanged); } void sb_ValueChanged(object sender, RoutedPropertyChangedEventArgs e) { lblDisplay.Text = "선택된 값 : " + this.sb.Value.ToString(); } } 결과화면

    Read more
  • 58.SilverLight3 - ScrollViewer

    Category Silverlight on 2009. 12. 2. 11:57

    ScrollViewer - 공간이 부족하여 레이아웃 컨트롤 크기보다 클 경우에 사용하시는게 좋습니다. - ScrollViewer는 단 하나의 자식 요소만을 가질수 있다고 합니다. - 여러개의 ScrollViewer 사용시 레이아웃 컨트롤을 ScrollViewer 둘러싸야 합니다. MainPage.xaml 안녕하세요. 이준철입니다. 자주자주 오세요. godffs.tistory.com 결과화면

    Read more
  • 57.SilverLight3 - ToolTip

    Category Silverlight on 2009. 12. 2. 11:57

    ToolTip - 풍선 도움말이라고 하여 도움말 역활 할 때 사용됩니다. 글씨 뿐만 아니라 컨트롤, 이미지 표시 가능합니다. ToolTip 속성 - HorizontalOffset, VerticalOffset : 도움말 표시 위치 변경가능 MainPage.xaml 아ú¨¡이I디ì©£: 암호: 결과화면 마우스를 이동시키면 ToolTip 이 나타납니다.

    Read more
  • 56.SilverLight3 - CheckBox

    Category Silverlight on 2009. 12. 2. 10:49

    CheckBox 속성 - IsThreeState="True" : Checked(체크), Indterminate(-), Unchecked(해제) - IsThreeState="False" : Checked(체크), Unchecked(해제 IsThreeState 기본 False입니다. MainPage.xaml MainPage.xaml.cs public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); this.chkShow.Click += new RoutedEventHandler(chkShow_Click); } void chkShow_Click(object sender, RoutedEventArgs e) { //체..

    Read more
  • 55.SilverLight3 - RadioButton

    Category Silverlight on 2009. 12. 2. 10:21

    RadioButton - 선택/미선택 가능한 컨트롤로 다른 언어에서 사용되는 RadioButton과 같습니다. MainPage.xaml MainPage.xaml.cs namespace RadioButton { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); //동적으로 RadioButton 추가 RdoAdd(); } private void RdoAdd() { System.Windows.Controls.RadioButton addRdo = new System.Windows.Controls.RadioButton(); addRdo.Name = "add1"; addRdo.GroupName = "prog..

    Read more
  • 54.SilverLight3 - RepeatButton

    Category Silverlight on 2009. 12. 2. 09:57

    RepeatButton - ButtonBase에 상속되지만 RepeatButton은 Click이 반복되는 컨트롤입니다. RepeatButton 속성 - Delay : 대기시간 - Interval : 간격 [ 참고 : RIA시대의 새로운 웹전략 : 실버라이트2 ] [ 참고 : 비주얼아카데미 ] 예제소스 제가 직접 응용했습니다! MainPage.xaml MainPage.xaml.cs public partial class MainPage : UserControl { private Int32 txtNameSize = 20; public MainPage() { InitializeComponent(); txtName.Text = "준철이블로그"; this.btnDown.Click += new RoutedEventH..

    Read more
  • 53.SilverLight3 - HyperlinkButton

    Category Silverlight on 2009. 12. 2. 09:22

    HyperlinkButton - Hyper Link와 같은 기능을 합니다. 태그 방식과 같습니다. HyperlinkButton 속성 - NavigateUri : HyperlinkButton zmfflrtl wlwjdehls Uri로 이동 - TargetName : NavigateUri 속성에 지정된 타겟 설정 참고 [ 13.XHTML - Url(Uri) 구조 ], [ 14.XHTML - 하이퍼링크 ] MainPage.xaml

    Read more
  • 52.SilverLight3 - AttachedProperty

    Category Silverlight on 2009. 12. 2. 08:55

    AttachedProperty - 부모요소에서 상속받은 속성 사용시 붙임(Attached) 속성 사용 - SetValue() : 설정하기 - GetValue() : 가져오기 MainPage.xaml MainPage.xaml public MainPage() { InitializeComponent(); //이벤트 등록 this.rect.MouseLeftButtonDown+= new MouseButtonEventHandler(rect_MouseLeftButtonDown); } privatebool flag; //클릭시 true/false 변경 (토글링) void rect_MouseLeftButtonDown(object sender, MouseButtonEventArgse) { //캔버스의 배경색 가져오기 : ..

    Read more
  • 51.SilverLight3 - RoutedEventArgs

    Category Silverlight on 2009. 12. 1. 17:38

    Event Routing - RoutedEventArgs 클래스 : 이벤트 발생을 수신기에서 처리기를 호출 할 수 있는 이벤트 형식 MainPage.xaml MainPage.xaml.cs public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); //그리드 this.LayoutRoot.MouseLeftButtonUp += new MouseButtonEventHandler(LayoutRoot_MouseLeftButtonUp); //사각형 this.rect.MouseLeftButtonUp += new MouseButtonEventHandler(rect_MouseLeftButtonUp); //텍스트 블록 thi..

    Read more
  • 50.SilverLight3 - InkPresenter

    Category Silverlight on 2009. 12. 1. 16:26

    MainPage.xaml MainPage.xaml.cs public partial class MainPage : UserControl { private Stroke stroke; //스트로크 개체 : 펜의 모양, 점 하나의 모양을 나타냄 private Brush brush = new SolidColorBrush(Colors.Red); //[A] 펜의 색상 저장 public MainPage() { InitializeComponent(); //4가지 마우스 관련 이벤트 등록 this.ipPen.MouseLeftButtonDown += new MouseButtonEventHandler(ipPen_MouseLeftButtonDown); this.ipPen.MouseMove += new MouseEventHand..

    Read more
  • 49.SilverLight3 - DragAndDrop

    Category Silverlight on 2009. 12. 1. 11:50

    MainPage.xaml MainPage.xaml.cs public partial class MainPage : UserControl { private bool isMouseDown = false; // 마우스 클릭 중인지 private Point lastPoint = new Point(); // 마지막 커서 위치 private Point offset = new Point(); // 왼쪽 상단과 개체간의 간격 여백 public MainPage() { InitializeComponent(); //[1] 마우스 왼쪽버튼 클릭 this.imgs.MouseLeftButtonDown += new MouseButtonEventHandler(imgs_MouseLeftButtonDown); //[2] 마우스 이동 (드..

    Read more
  • 48.SilverLight3 - TextBlock

    Category Silverlight on 2009. 12. 1. 11:17

    TextBlock - Text를 읽기 전용으로 출력 하는 컨트롤 TextBlock 속성 - Fontfamily : 글꼴 지정 - FontSize : 글꼴 크기 지정 - FontStyle : 글꼴 스타일 지정 - FontWeight : 글꼴 두께 지정 - Foreground : 글꼴 색 지정 - TextDecorations : 글꼴 줄 표시 여부 ( 기본값 : NONE ) MainPage.xaml 안녕 Hi Hello : 줄 바꿈

    Read more
1 2 3 4 5 6 7