wpf datagrid row height 行高自動計算使每行行高自適應文本

來源:互聯網
上載者:User

標籤:

wpf 的datagrid的行高 要麼是Auto,要麼是定值:但會帶來麻煩就是每行行高都一樣。

當需要按內容(主要是wrap 換行的textbox或textblock)來動態調整行高的時候,需要用到dataGrid的LoadingRow 事件。

參考兩個網頁:

http://stackoverflow.com/questions/9264398/how-to-calculate-wpf-textblock-width-for-its-known-font-size-and-characters

 

http://www.codeproject.com/Articles/5521/Advanced-DataGrid-sizing

 

代碼注釋詳細,不做細談。

代碼如下:

 private void dgList_LoadingRow(object sender, DataGridRowEventArgs e)        {            e.Row.Height = 30;            //粗略計算行高。為了更好的顯示效果           ContentInfo info = (ContentInfo)e.Row.DataContext;            if (info != null)            {                //計算最大長度的文本                string maxLengthString = info.name1.Length > info.name2.Length ? info.name1: info.name2;                //擷取換行文本的文字框寬度,即template裡面的textbox或textblock的實際寬度                double textBoxWidth = (this.ActualWidth - 300) / 2;                                 var formattedText = new FormattedText(    maxLengthString ,    CultureInfo.CurrentUICulture,    FlowDirection.LeftToRight,    new Typeface(new FontFamily("微軟雅黑"), FontStyles.Normal, FontWeights.Normal, FontStretches.Normal),    12,    Brushes.Black);                double calculateHeight = formattedText.Height * (formattedText.Width / textBoxWidth);                e.Row.Height = 30 > calculateHeight ? 30 : calculateHeight;            }        }

 效果(每行行高都不一樣,自適應了):

 

轉載請註明出處,謝謝。 有問題請聯絡:[email protected]

 

wpf datagrid row height 行高自動計算使每行行高自適應文本

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.