博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在StackPanel中加入新的stackpanel,包含图片和文字
阅读量:6000 次
发布时间:2019-06-20

本文共 1437 字,大约阅读时间需要 4 分钟。

private async void Button_Click(object sender, RoutedEventArgs e)        {            List
jokes = await this.getFileContentAsync(); imagepoll.Orientation = Orientation.Vertical; imagepoll.Width = 800; foreach (ServiceReference1.Pic pic in jokes) { StackPanel panel = new StackPanel(); panel.Orientation = Orientation.Horizontal; ImageBrush imageBrush = new ImageBrush(); imageBrush.ImageSource = new BitmapImage(new Uri(pic.URL)); Image image = new Image(); image.Source = imageBrush.ImageSource; image.Margin = new Thickness(0, 0, 10, 0); image.Width = 100; panel.Children.Add(image); TextBlock block = new TextBlock(); block.Text = pic.Name; panel.Children.Add(block); this.imagepoll.Children.Add(panel); panel.PointerMoved += Mource_Move; } } private async void Mource_Move(object sender, RoutedEventArgs e) { StackPanel panel = (StackPanel)sender; TextBlock block = (TextBlock)panel.Children[1]; string message = block.Text; MessageDialog dialog = new MessageDialog(message); dialog.ShowAsync(); }

 

转载于:https://www.cnblogs.com/zhuzhenyu/archive/2012/11/28/2791892.html

你可能感兴趣的文章
python之处理异常
查看>>
c++中的虚函数
查看>>
遍历form表单里面的表单元素,取其value
查看>>
PHP TP框架基础
查看>>
directive ngChecked
查看>>
面试110道题
查看>>
python 08 文件操作
查看>>
强势解决:windows 不能在本地计算机中起动Tomcat参考特定错误代码1
查看>>
Gradle 配置debug和release工程目录
查看>>
spring mvc处理ios 请求头不全时空参 无法解析的问题处理
查看>>
SpringBoot RabbitMq集成
查看>>
使用webmagic构建一个分布式的爬虫
查看>>
c运算符和优先级
查看>>
TODO:一不顺眼就换字体Go之代码篇
查看>>
Linux设备驱动程序编写
查看>>
curl指令的使用
查看>>
为什么使用xfs
查看>>
THINKPHP 结合阿里大于发送短信
查看>>
网站故障排查常用命令
查看>>
Python setdaemon守护进程
查看>>