- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个使用此代码的全屏图像:
<phone:PhoneApplicationPage
x:Class="solution.FullScreenViewer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="PortraitOrLandscape" Orientation="Portrait"
mc:Ignorable="d"
shell:SystemTray.IsVisible="True">
<Image Name="img" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"Stretch="Uniform"/>
</phone:PhoneApplicationPage>
这只是一个更大项目的一部分。我想实现在单击图像后全屏打开图像的功能,所以我制作了另一个页面,只有一个图像,没有别的。我正在使用以下代码从 C# 加载图像:
protected override void OnNavigatedTo(NavigationEventArgs e)
{
string context = this.NavigationContext.QueryString["context"];
img.Source = new BitmapImage(new Uri(context, UriKind.RelativeOrAbsolute));
base.OnNavigatedTo(e);
}
现在我想添加一个选项来缩放图片,但我不知道如何。我也尝试过用谷歌搜索它,但我唯一发现的是在 ScroolViewer 中使用 ZoomMode,这对我不起作用(它说成员 ZoomMode 无法识别)。
有没有其他办法放大?
最佳答案
您可以使用其中包含另一个网格的网格来代替您正在使用的图像。在第二个网格上,使用 Grid.RenderTransform
通过缩放变换调整其内容(网格内的图像)的大小。您可以使用 ManipulationDelta
事件来跟踪何时放大或缩小。
使用它你可以放大图片,但这不是很好,因为你只关注了图片的左上角。为避免这种情况,您可以通过在图像渲染变换标签中添加平移变换来使用户能够滚动图像。您可以在下面的代码中看到如何做到这一点:
<Grid x:Name="LayoutRoot" ManipulationDelta="LayoutRoot_ManipulationDelta">
<Grid x:Name="ContentPanel">
<Grid x:Name="imageGrid">
<Grid.RenderTransform>
<ScaleTransform x:Name="ImageTransform" />
</Grid.RenderTransform>
<Image x:Name="img" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Stretch="Uniform" Source="/Resources/Logo/CTK .png"
ManipulationDelta="img_ManipulationDelta"
ManipulationCompleted="img_ManipulationCompleted">
<Image.RenderTransform>
<TranslateTransform x:Name="PanTransform"/>
</Image.RenderTransform>
<Image.Resources>
<Storyboard x:Name="Pan">
<DoubleAnimation x:Name="PanAnimation"
Storyboard.TargetName="PanTransform"
Storyboard.TargetProperty="X" Duration="0:0:1">
<DoubleAnimation.EasingFunction>
<CircleEase EasingMode="EaseOut" />
</DoubleAnimation.EasingFunction>
</DoubleAnimation>
</Storyboard>
</Image.Resources>
</Image>
</Grid>
</Grid>
</Grid>
这是缩放和平移的 C# 代码:
private void LayoutRoot_ManipulationDelta(object sender, System.Windows.Input.ManipulationDeltaEventArgs e)
{
if (e.DeltaManipulation.Scale.X > 0.0 && e.DeltaManipulation.Scale.Y > 0.0)
{
// Scale in the X direction
double tmp = ImageTransform.ScaleX * ((e.DeltaManipulation.Scale.X + e.DeltaManipulation.Scale.Y) / 2);
if (tmp < 1.0)
tmp = 1.0;
else if (tmp > 4.0)
tmp = 4.0;
ImageTransform.ScaleX = tmp;
// Scale in the Y direction
tmp = ImageTransform.ScaleY * ((e.DeltaManipulation.Scale.X + e.DeltaManipulation.Scale.Y) / 2);
if (tmp < 1.0)
tmp = 1.0;
else if (tmp > 4.0)
tmp = 4.0;
ImageTransform.ScaleY = tmp;
}
}
private void img_ManipulationDelta(object sender, System.Windows.Input.ManipulationDeltaEventArgs e)
{
// First make sure we're translating and not scaling (one finger vs. two)
if (e.DeltaManipulation.Scale.X == 0.0 && e.DeltaManipulation.Scale.Y == 0.0)
{
Image photo = sender as Image;
TranslateTransform transform = photo.RenderTransform as TranslateTransform;
// Compute the new X component of the transform
double x = transform.X + e.DeltaManipulation.Translation.X;
double y = transform.Y + e.DeltaManipulation.Translation.Y;
// Apply the computed value to the transform
transform.X = x;
transform.Y = y;
}
}
private void img_ManipulationCompleted(object sender, System.Windows.Input.ManipulationCompletedEventArgs e)
{
if (e.IsInertial)
{
Image photo = sender as Image;
// Compute the inertial distance to travel
double dx = e.FinalVelocities.LinearVelocity.X / 10.0;
double dy = e.FinalVelocities.LinearVelocity.Y / 10.0;
TranslateTransform transform = photo.RenderTransform as TranslateTransform;
double x = transform.X + dx;
double y = transform.Y + dy;
// Apply the computed value to the animation
PanAnimation.To = x;
// Trigger the animation
Pan.Begin();
}
}
关于c# - 在 WP8.1 中缩放图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25148850/
我正在尝试在我正在处理的博客上使用类别帖子 (WP-CPL) 插件来按类别过滤“最近的帖子”。基本上,当有人点击博客上的类别名称时,我希望它显示该类别的帖子。这将通过 Life Is Simple 模
我的形象 我只想为某些用户隐藏特定页面。 function remove_menus(){ // get current login user's role $roles = wp_g
我的形象 我只想为某些用户隐藏特定页面。 function remove_menus(){ // get current login user's role $roles = wp_g
我为我的 wp 网站创建了一个简单的脚本,我正在尝试从 2 个表的 wp 数据库中获取正确的数据,这是代码, 当我显示“user_ref_id”列的结果重复多次时,这是代码 global $wpdb;
我安装了一个名为 Hide My WP 的插件来更改网站结构,但考虑到我使用的是自定义主题,它破坏了一些功能。所以我手动从plugins文件夹中删除了插件,但是从那以后我就无法访问/wp-admin/
我试图从头开始创建 WXR 文件(WordPress eXtended Rss)。 我的代码基于 XML/ wordpress生成的WXR文件并像这样开始: 我是这样开始的: $newxml =
我想将所有页面重定向到 http://www.expample2.com除了 wp-admin 和 wp-json。 例如,用户能够登录 http://www.example1.com/wp-admi
我使用 MAMP 在本地构建了一个快速的 WordPress 网站,然后将其 checkin SVN 存储库。然后我将其检查到我的开发服务器上。 除了运行 search and replace too
在搜索端点的 WP REST API (wp json) 中: https://www.example.com/wp-json/wp/v2/search?search=searchPhrase&_em
我正在使用这个 NGINX 规则来强制 WordPress 网站的尾部斜杠: rewrite ^([^.]*[^/])$ $1/ permanent; 但是这个规则给 Gutenberg 和 wp-j
在搜索端点的 WP REST API (wp json) 中: https://www.example.com/wp-json/wp/v2/search?search=searchPhrase&_em
我正在使用这个 NGINX 规则来强制 WordPress 网站的尾部斜杠: rewrite ^([^.]*[^/])$ $1/ permanent; 但是这个规则给 Gutenberg 和 wp-j
我想限制所有用户访问 WordPress 网站登录。 例如:假设我有 WordPress 网站域 example1.com,我想限制所有用户使用 example1.com/wp- 访问管理员登录adm
尝试实现这里讨论的技术, http://z9.io/2013/10/21/shiny-new-dynamic-content-wp-super-cache/ 进入使用 Genesis 框架的站点。我想
我试图在位于我的 WP 主题文件夹内的 PHP 文件中调用自定义 AJAX 函数,但是我无法让它检索输出。我认为问题在于将 WP 查询链接到主 WP 文件? $.ajax({ url: "../../
我正在编写一个 perl 脚本,用于将 Wordpress 安装从一个地方迁移到另一个地方。在这项工作中,我需要使用 wp-cli 调用从 wp-config 文件中获取 wordpress 数据库名
我最近更改了我的 WordPress 网站上的目录。我导出了数据库,搜索并替换了旧 URL 为新 URL,然后重新导入。该网站的前端工作正常,但任何页面的后端都需要近 15 秒才能加载。 从funct
我使用下面的代码通过类似的单词标签获取帖子但不起作用 $query = " SELECT * FROM $wpdb->posts , $wpdb->terms
我已经通过 DirectAdmin 在我的服务器上安装了 SSL 证书。这似乎运作良好。 我已将 wp_*_options 表中的 url 更改为 https://mydomain.nl 等。突然我的
我正在建立一个网站,使用 wordpress+buddypress(最新版本)。 在这个网站中,我有自己的自定义登录|注册|重置密码表单,我不想将它们链接到后端 wp-forms。 我已经阻止了所有用
我是一名优秀的程序员,十分优秀!