WPF ListBox的進階使用(一)

来源:https://www.cnblogs.com/Johar/archive/2018/08/30/9562187.html
-Advertisement-
Play Games

公司項目有個需求,UI界面支持動態平均分割界面,想了想便想到用ListBox來實現,用UniformGrid作為ListBox的ItemsPanelTemplate,通過動態改變UniformGrid的Columns屬性,可以動態分割界面。具體實現如下所示: 對應的ViewModel層代碼: 軟體運 ...


公司項目有個需求,UI界面支持動態平均分割界面,想了想便想到用ListBox來實現,用UniformGrid作為ListBox的ItemsPanelTemplate,通過動態改變UniformGrid的Columns屬性,可以動態分割界面。具體實現如下所示:

 1 <Window x:Class="WpfDemo.MainWindow"
 2         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 3         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 4         xmlns:comm="clr-namespace:WpfDemo.CommonControls;assembly=WpfDemo.CommonControls"
 5         xmlns:local="clr-namespace:WpfDemo"
 6         Title="MainWindow" Height="350" Width="525">
 7     
 8     <Grid>
 9         <ListBox ItemsSource="{Binding DataSource}">
10             <ListBox.ItemsPanel>
11                 <ItemsPanelTemplate>
12                     <UniformGrid Columns="{Binding Colums}" IsItemsHost="True"/>
13                 </ItemsPanelTemplate>
14             </ListBox.ItemsPanel>
15             <ListBox.ItemContainerStyle>
16                 <Style TargetType="{x:Type ListBoxItem}">
17                     <Setter Property="Template">
18                         <Setter.Value>
19                             <ControlTemplate TargetType="{x:Type ListBoxItem}">
20                                 <Border HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="Green" BorderBrush="Yellow" BorderThickness="1">
21                                     <TextBlock Text="{Binding CameraName}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
22                                 </Border>
23                             </ControlTemplate>
24                         </Setter.Value>
25                     </Setter>
26                 </Style>
27             </ListBox.ItemContainerStyle>
28         </ListBox>
29     </Grid>
30 </Window>

對應的ViewModel層代碼:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Linq;
 5 using System.Runtime.CompilerServices;
 6 using System.Text;
 7 using System.Threading.Tasks;
 8 
 9 namespace WpfDemo
10 {
11     public abstract class NotifyPropertyBase : INotifyPropertyChanged
12     {
13         protected void SetProperty<T>(ref T storage, T value, [CallerMemberName] string propertyName = null)
14         {
15             if (object.Equals(storage, value)) return;
16             storage = value;
17             this.OnPropertyChanged(propertyName);
18         }
19 
20         protected void OnPropertyChanged([CallerMemberName] string propertyName = null)
21         {
22             if (this.PropertyChanged != null)
23             {
24                 this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
25             }
26         }
27 
28         public event PropertyChangedEventHandler PropertyChanged;
29     }
30 }
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Collections.ObjectModel;
 4 using System.Linq;
 5 using System.Text;
 6 using System.Threading.Tasks;
 7 using System.Windows.Threading;
 8 
 9 namespace WpfDemo
10 {
11     public class MainWindowVM : NotifyPropertyBase
12     {
13         private DispatcherTimer timer;
14         public MainWindowVM()
15         {
16             DataSource = new ObservableCollection<WndViewModel>();
17             Colums = 1;
18             timer = new DispatcherTimer();
19             timer.Interval = new TimeSpan(0, 0, 1);
20             timer.Tick += timer_Tick;
21             timer.Start();
22         }
23 
24         private int count = 0;
25         void timer_Tick(object sender, EventArgs e)
26         {
27             var temp = new WndViewModel()
28             {
29                 CameraName = string.Format("Camera {0}", ++count),
30             };
31             DataSource.Add(temp);
32             Console.WriteLine(temp.CameraName);
33             if (count <= 6)
34             {
35                 Colums = count;
36             }
37             else if (count > 100)
38             {
39                 count = 0;
40                 DataSource.Clear();
41                 Colums = 1;
42             }
43         }
44 
45         private int colums;
46         public int Colums
47         {
48             get { return colums; }
49             set
50             {
51                 SetProperty(ref colums, value);
52             }
53         }
54 
55         private ObservableCollection<WndViewModel> dataSource;
56         public ObservableCollection<WndViewModel> DataSource
57         {
58             get { return dataSource; }
59             set
60             {
61                 SetProperty(ref dataSource, value);
62             }
63         }
64     }
65 }

軟體運行的效果:

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1、環境簡介Visual Studio 2013社區版Halcon18.052、使用Nuget在VS工程中安裝Halcon插件搜索欄輸入關鍵字halcon,出現兩個插件,分別是halcon語言的介面和halcon引擎,全部安裝即可。需要註意的是,這兩個控制項的使用的前提是你的電腦上已經安裝了Halco... ...
  • 去年就開始學習採用Docker+Jenkins+.Net Core搭建生成式流水線,一直拖到現在,也沒有徹底的好好靜下來去總結總結。趁著現在對自己的嚴格要求下,逐漸開始重視自我總結,以此來鞏固逐漸失去的知識。 本文地址:https://www.cnblogs.com/CKExp/p/9536864. ...
  • 首先瞭解一下 RFC4646 和 BCP 47 是什麼東西: "RFC4646" The name is a combination of an ISO 639 two letter lowercase culture code associated with a language and an I ...
  • 背景 由於最近公司要做微信小程式聊天,所以.NetFramwork版本的SignalR版本的不能用了。因為小程式里沒有windows對象,導致JQuery無法使用。而Signalr的 js客戶端是依賴JQuery的。 所以看下了Core版本的SignarlR,經過測試,發現可以在微信中運行,不過要將 ...
  • Ocelot是為.net core量身定做的,目前是基於 netstandard2.0進行構建的。 .NET Core 2.1中如何使用呢? 安裝NuGet package 使用nuget安裝Ocelot及其依賴項。您需要創建一個netstandard2.0項目並將其Package安裝到項目中。然後 ...
  • App.xaml.cs中的代碼每次都差不多,故特地將其整理出來直接復用: ...
  • 問題: 需要讓程式(以非同步方式)等待一段時間。 解決方案:Task類的靜態函數Delay,返回Task對象 在github開源項目 ,找到Task.cs有關Delay方法的源碼 github地址: "https://github.com/dotnet/coreclr/blob/master/src/ ...
  • 項目中經常使用需要根據搜索條件查詢數據,然後用卡片來展示數據。用卡片展示數據時,界面的寬度發生變化,希望顯示的卡片數量也跟隨變化。WrapPanel雖然也可以實現這個功能,但是將多餘的部分都留在行尾,十分不美觀,最好是能夠將多餘的寬度平分在每個ListBoxItem之間,比較美觀,也符合項目需求。如 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...