silverlight ScrollViewer 스크롤 막대에 응답 마우스 휠 추가
<UserControl x:Class="SilverlightApplication54.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 SilverlightApplication54
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
TestButton.Click += new RoutedEventHandler(TestButton_Click);
this.MouseWheel += new MouseWheelEventHandler(MainPage_MouseWheel);
}
/// <summary>
/// ,ScrollViewer 。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
void MainPage_MouseWheel(object sender, MouseWheelEventArgs e)
{
ScrollViewer viewer = TestScrollViewer;
if (viewer == null)
return;
double num = Math.Abs((int)(e.Delta / 2));
double offset = 0.0;
if (e.Delta > 0)
{
offset = Math.Max((double)0.0, (double)(viewer.VerticalOffset - num));
}
else
{
offset = Math.Min(viewer.ScrollableHeight, viewer.VerticalOffset + num);
}
if (offset != viewer.VerticalOffset)
{
viewer.ScrollToVerticalOffset(offset);
e.Handled = true;
}
}
void TestButton_Click(object sender, RoutedEventArgs e)
{
// TextBox
TextBox textBox = new TextBox();
textBox.Width = 200;
textBox.Height = 100;
TestStackPanel.Children.Add(textBox);
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.