温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Silverlight中ViewBox组件如何使用

发布时间:2021-07-19 15:52:10 来源:亿速云 阅读:101 作者:Leah 栏目:编程语言

这期内容当中小编将会给大家带来有关Silverlight中ViewBox组件如何使用,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

组件所在命名空间:

System.Windows.Controls

组件常用属性:

Child:获取或设置一个ViewBox元素的单一子元素。

Stretch:获取或设置拉伸模式以决定该组件中的内容以怎样的形式填充该组件的已有空间。

StretchDirection:获取或设置该组件的拉伸方向以决定该组件中的内容将以何种形式被延展。

实例:

详细的说明在代码注释中给出。

MainPage.xaml文件代码:

<UserControl 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" xmlns:controlsToolkit="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit" x:Class="SilverlightClient.MainPage" d:DesignWidth="320" d:DesignHeight="240"> <Grid x:Name="LayoutRoot" Width="320" Height="240" Background="White"> <Slider x:Name="HSlider" Minimum="0" Maximum="100"  Height="24" Margin="79,0,91,42" VerticalAlignment="Bottom" Width="150"/> <Slider x:Name="VSlider" Minimum="0" Maximum="100" HorizontalAlignment="Right" Margin="0,24,57,66" Width="30" Orientation="Vertical" Height="150"/> <Border Margin="79,24,91,66" BorderBrush="Black" BorderThickness="1"> <Grid x:Name="theContainer" Background="AntiqueWhite"> <controlsToolkit:Viewbox x:Name="sampleViewBox" Margin="0,0,-2,-2"> <!--放入ViewBox中的按钮对象--> <Button Width="101" Content="Button"/> </controlsToolkit:Viewbox> </Grid> </Border> <ComboBox x:Name="cbStretch" Height="21" HorizontalAlignment="Left" Margin="8,0,0,8" VerticalAlignment="Bottom" Width="139"/> <ComboBox x:Name="cbStretchDirection" Height="21" HorizontalAlignment="Right" Margin="0,0,8,8" VerticalAlignment="Bottom" Width="139"/> <TextBlock Height="16" HorizontalAlignment="Left" Margin="9,0,0,33" VerticalAlignment="Bottom" Width="66" Text="拉伸模式:" TextWrapping="Wrap"/> <TextBlock Height="16" HorizontalAlignment="Right" Margin="0,0,8,33" VerticalAlignment="Bottom" Width="56" Text="拉伸方向:" TextWrapping="Wrap"/> </Grid> </UserControl>

MainPage.xaml.cs文件代码:

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 SilverlightClient  {  //辅助类StretchHelper  public class StretchHelper  {  public string StretchModeName { get; set; }  public Stretch theStretchMode { get; set; }  }  //辅助类StretchDirectionHelper  public class StretchDirectionHelper  {  public string StretchDirectionName { get; set; }  public StretchDirection theStretchDirection { get; set; }  }  public partial class MainPage : UserControl  {  //定义cbStretch与cbStretchDirection的数据源  List<StretchHelper> cbStretchList = new List<StretchHelper>();  List<StretchDirectionHelper> cbStretchDirectionList = new List<StretchDirectionHelper>();  public MainPage()  {  InitializeComponent();  //注册事件触发  this.Loaded += new RoutedEventHandler(MainPage_Loaded);  this.cbStretch.SelectionChanged += new SelectionChangedEventHandler(cbStretch_SelectionChanged);  this.cbStretchDirection.SelectionChanged += new SelectionChangedEventHandler(cbStretchDirection_SelectionChanged);  this.HSlider.ValueChanged += new RoutedPropertyChangedEventHandler<double>(HSlider_ValueChanged);  this.VSlider.ValueChanged += new RoutedPropertyChangedEventHandler<double>(VSlider_ValueChanged);  }  void VSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)  {  sampleViewBox.Height = theContainer.ActualHeight * VSlider.Value / 100.0;  }  void HSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)  {  sampleViewBox.Width = theContainer.ActualWidth * HSlider.Value / 100.0;  }  void cbStretchDirection_SelectionChanged(object sender, SelectionChangedEventArgs e)  {  if (cbStretchDirection.SelectedItem != null)  {  sampleViewBox.StretchDirection = (cbStretchDirection.SelectedItem as StretchDirectionHelper).theStretchDirection;  }  }  void cbStretch_SelectionChanged(object sender, SelectionChangedEventArgs e)  {  if (cbStretch.SelectedItem != null)  {  sampleViewBox.Stretch = (cbStretch.SelectedItem as StretchHelper).theStretchMode;  }  }  void MainPage_Loaded(object sender, RoutedEventArgs e)  {  //填充各ComboBox内容  cbStretchList.Add(new StretchHelper() { StretchModeName = "Fill", theStretchMode = Stretch.Fill });  cbStretchList.Add(new StretchHelper() { StretchModeName = "None", theStretchMode = Stretch.None });  cbStretchList.Add(new StretchHelper() { StretchModeName = "Uniform", theStretchMode = Stretch.Uniform });  cbStretchList.Add(new StretchHelper() { StretchModeName = "UniformToFill", theStretchMode = Stretch.UniformToFill });  cbStretch.ItemsSource = cbStretchList;  cbStretch.DisplayMemberPath = "StretchModeName";  cbStretchDirectionList.Add(new StretchDirectionHelper() { StretchDirectionName = "DownOnly", theStretchDirection = StretchDirection.DownOnly });  cbStretchDirectionList.Add(new StretchDirectionHelper() { StretchDirectionName = "UpOnly", theStretchDirection = StretchDirection.UpOnly });  cbStretchDirectionList.Add(new StretchDirectionHelper() { StretchDirectionName = "Both", theStretchDirection = StretchDirection.Both });  cbStretchDirection.ItemsSource = cbStretchDirectionList;  cbStretchDirection.DisplayMemberPath = "StretchDirectionName";  }  }  }

最终效果图:

Silverlight中ViewBox组件如何使用 

上述就是小编为大家分享的Silverlight中ViewBox组件如何使用了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI