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 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 |