블로그 이미지
Magic_kit
study 관련자료를 한곳으로 자기 개발 목적으로 재태크 재무 관리 목적으로 일상생활의 팁을 공유 하기 위하여 블로그를 개설 하였습니다.

calendar

1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
반응형

Category

Recent Post

Recent Comment

Archive

2009. 12. 1. 10:58 .Net Project/SilverLight 3.0
반응형
 ScrollViewer Control 
 - Content 프로퍼터에 설정된 자식 요소가 모두 포함 될 수 있는 스크롤 영역을 만드는 컨트롤 방식
 - 프로퍼티 설정하여 세로, 가로 스크롤바가 보이는 조건을 설정 가능 하도록 하고 있다. 
 ScrollViewer Control 사용 방법)


<UserControl x:Class="RiaScrollView.MainPage"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

    mc:Ignorable="d"

    d:DesignHeight="300" d:DesignWidth="400">

 

    <Canvas>

        <ScrollViewer Canvas.Left="10" Canvas.Top="10"

                      Height="100" Width="100"

                      HorizontalScrollBarVisibility="Auto"

                      VerticalScrollBarVisibility="Auto">

            <TextBlock Width="400" TextWrapping="Wrap" Text="ScrollView Control

                       This video demonstrates how to utilize a user's
                       web camera and

                       microphone attached to their computer via the browser.

                       This demonstrates the basics of the core

                       API for capturing the audio/video." >               

            </TextBlock>           

        </ScrollViewer>

    </Canvas>

</UserControl> 




반응형

'.Net Project > SilverLight 3.0' 카테고리의 다른 글

46장 InkPresenter 컨트롤  (0) 2009.12.01
45장) Drag&Drop 컨트롤  (0) 2009.12.01
41장) ToolTip 컨트롤  (0) 2009.12.01
40장) 다시 보는 Canvas 예제 (복습)  (0) 2009.12.01
39장) RadioButton 컨트롤  (0) 2009.11.27
posted by Magic_kit