程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> 【WPF】日常筆記,wpf筆記

【WPF】日常筆記,wpf筆記

編輯:關於.NET

【WPF】日常筆記,wpf筆記


本文專用於記錄WPF開發中的小細節,作為備忘錄使用。

 

1. 關於綁定:

Text ="{Binding AnchorageValue,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"

 

2. 關於ListBox的樣式

 <ListBox.ItemContainerStyle>
     <Style TargetType="{x:Type ListBoxItem}">
           <Style.Resources>
                   <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent" />
                   <SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}" Color="Black" />
           </Style.Resources>
                   <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
                   <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
     </Style>
 </ListBox.ItemContainerStyle>

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved