06 2022 档案

asp.net webform 动态调试技巧
摘要:<script runat="server"> protected void TextBox1_TextChanged(object sender, EventArgs e) { Trace.Warn("TextBox1_TextChanged"); } </script> <script runa 阅读全文

posted @ 2022-06-30 10:19 空明流光 阅读(122) 评论(0) 推荐(0) 编辑

wpf 播放视频以及循环播放
摘要:url: <MediaElement Source="{Binding url}" /> public Uri url { get { return new Uri("http://vjs.zencdn.net/v/oceans.mp4", UriKind.Absolute) ; } } 文件路径: 阅读全文

posted @ 2022-06-28 16:34 空明流光 阅读(642) 评论(0) 推荐(0) 编辑

wpf 中的 repeater ------- ItemsControl
摘要:<ItemsControl ItemsSource="{Binding Path=imageNames}" Padding="10"> <ItemsControl.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding}" /> </DataTe 阅读全文

posted @ 2022-06-28 15:22 空明流光 阅读(395) 评论(0) 推荐(0) 编辑

wpf 布局要点备忘
摘要:通用: VerticalContentAlignment="Stretch" :内部子控件会垂直100%高度 HorizontalContentAlignment="Stretch" :内部子控件会水平100%宽度 HorizontalAlignment="Left" :设置之后会左对齐,水平方向不 阅读全文

posted @ 2022-06-22 13:53 空明流光 阅读(136) 评论(0) 推荐(0) 编辑

wpf xaml 中的计算绑定不用convert
摘要:Key features and restrictions: One or many source properties in Path with many available operators: description <Label Content="{c:Binding A*0.5+(B.Ne 阅读全文

posted @ 2022-06-22 11:14 空明流光 阅读(437) 评论(0) 推荐(0) 编辑

wpf listbox 无选中背景,及纵向横向排列完整实例
摘要:建议使用ItemsControl替代,ListBox限制太多<TabItem Header="我的Tab页" Name="tabItem1"> <TabItem.Resources> <SolidColorBrush x:Key="Item.MouseOver.Background" Color=" 阅读全文

posted @ 2022-06-21 19:01 空明流光 阅读(419) 评论(0) 推荐(0) 编辑

WPF ListBox横向排列自动换行显示表单
摘要:建议使用ItemsControl替代,ListBox限制太多 如果只是单纯的让ListBox可以横向配列,这样很简单,只需要更改ListBox的ItemsPanel模板就可以,例如: <ListBox><ListBox.ItemsPanel><ItemsPanelTemplate><WrapPane 阅读全文

posted @ 2022-06-21 17:15 空明流光 阅读(1504) 评论(0) 推荐(0) 编辑

导航