silverlight가 ScrollViewer에 동적으로 컨트롤을 추가할 때 ScrollViewer 스크롤 막대는 항상 아래로
                                            
 2630 단어  silverlight
                    
<UserControl x:Class="SilverlightApplication7.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">
    <Grid x:Name="LayoutRoot" Background="White">
        <Grid.RowDefinitions>
            <RowDefinition Height="50"></RowDefinition>
            <RowDefinition Height="*"></RowDefinition>
        </Grid.RowDefinitions>
        <Button Name="TestButton" Width="200" Height="24" Content="Add" Grid.Row="0"></Button>
        <ScrollViewer Name="TestScrollViewer" Grid.Row="1">
            <StackPanel Name="TestStackPanel" Orientation="Vertical">  
            </StackPanel>
        </ScrollViewer>
    </Grid>
</UserControl>  2) 백그라운드 코드
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
namespace SilverlightApplication7
{
    public partial class MainPage : UserControl
    {
        private int counter = 1;
        public MainPage()
        {
            InitializeComponent();
            TestButton.Click += new RoutedEventHandler(TestButton_Click);
            TestStackPanel.SizeChanged += new SizeChangedEventHandler(TestStackPanel_SizeChanged);
        }
        void TestStackPanel_SizeChanged(object sender, SizeChangedEventArgs e)
        {
            // StackPanel       ScrollViewer     ,ScrollViewer     
            if (TestStackPanel.ActualHeight > TestScrollViewer.ActualHeight)
            {
                TestScrollViewer.ScrollToVerticalOffset(TestStackPanel.ActualHeight);
            }
        }
        void TestButton_Click(object sender, RoutedEventArgs e)
        {
            //   Button
            Button button = new Button();
            button.Width = 200;
            button.Height = 100;
            button.Content = counter++;
            TestStackPanel.Children.Add(button);
        }
    }
}
                이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Silverlight animation performanceAnimation performance can be improved with several configurations: Desired Frame Rate Configure in the WEB project: Hard...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.