轉帖|其它|編輯:郝浩|2011-09-22 14:54:55.000|閱讀 1876 次
概述:本文主要講述如何在WPF中實現RichTextBox插入圖片及調整行距,希望對大家有幫助。
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
WPF里面雖然很多形式上跟Winform一樣,但是控件的使用上面還是會有很多詫異。RichTextBox就是一個例子,是的,在WPF里面對這個控件可以做很多Winform很難做的效果出來。
比如在對RichTextBox插入圖片,winform時代除了用復制粘貼這種借助剪貼板的差勁方法之外就是要重寫和自定義RichTextBox控件了。這就需要高超的編程能力了。但在WPF里面,只需要加幾個代碼就能搞定了。
在XAML里面添加圖片到RichTextBox可以如下所示:
? ? ? ? ? ? ? <R?i?c?h?T?e?x?t?B?o?x? H?o?r?i?z?o?n?t?a?l?A?l?i?g?n?m?e?n?t=?"?L?e?f?t?"
M?a?r?g?i?n=?"?9?0?,?1?2?,?0?,?0?" ?N?a?m?e=?"?r?i?c?h?T?e?x?t?B?o?x?1?">
? ? ? ? ? ? ? ? ? ? ? <R?i?c?h?T?e?x?t?B?o?x?.?D?o?c?u?m?e?n?t>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <F?l?o?w?D?o?c?u?m?e?n?t? F?o?c?u?s?a?b?l?e=?"?T?r?u?e?" ?L?i?n?e?H?e?i?g?h?t=?"?5?">
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <P?a?r?a?g?r?a?p?h? x?:?N?a?m?e=?"?g?a?r?a?"> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?文?字?區?域?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <I?m?a?g?e? S?o?u?r?c?e=?"?D?:?\?1?3?4?2?8?9?2?_?1?0?.?j?p?g?" ?F?o?c?u?s?a?b?l?e=?"?T?r?u?e?" ?
H?e?i?g?h?t=?"?5?0?" ?S?t?r?e?t?c?h=?"?U?n?i?f?o?r?m?" /?> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?文?字?區?域? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <R?u?n? T?e?x?t=?"?文?字?區?域?文?字?區?域?">?<?/R?u?n>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <R?u?n? T?e?x?t=?"?文?字?區?域?">?<?/R?u?n>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <?/P?a?r?a?g?r?a?p?h>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <P?a?r?a?g?r?a?p?h? x?:?N?a?m?e=?"?g?a?r?a?1?"> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <R?u?n? T?e?x?t=?"?文?字?區?域?">?<?/R?u?n>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <R?u?n? T?e?x?t=?"?文?字?區?域?">?<?/R?u?n>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <?/P?a?r?a?g?r?a?p?h> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <?/F?l?o?w?D?o?c?u?m?e?n?t>
? ? ? ? ? ? ? ? ? ? ? <?/R?i?c?h?T?e?x?t?B?o?x?.?D?o?c?u?m?e?n?t>
? ? ? ? ? ? ? <?/R?i?c?h?T?e?x?t?B?o?x>
這樣就往控件里面添加了圖片了。
備注:FlowDocument里面的LineHeight屬性是文字段落的間距。默認間距很大,所以這里調整一下!
當然,這樣未必能夠完全滿足要求,因為有時候我們需要在程序運行的時候點擊按鈕選取圖片進行添加。代碼如下:
p?r?i?v?a?t?e v?o?i?d ?A?d?d?J?P?G?_?C?l?i?c?k?(o?b?j?e?c?t ?s?e?n?d?e?r?,? ?R?o?u?t?e?d?E?v?e?n?t?A?r?g?s? ?e?)?
? ? ? ? ? ? ? ?{?
? ? ? ? ? ? ? ? ? ? ? s?t?r?i?n?g ?f?i?l?e?p?a?t?h? = "?";?
? ? ? ? ? ? ? ? ? ? ? s?t?r?i?n?g ?f?i?l?e?n?a?m?e? = "?";?
? ? ? ? ? ? ? ? ? ? ? ?O?p?e?n?F?i?l?e?D?i?a?l?o?g? ?o?p?e?n?f?i?l?e?j?p?g? = n?e?w ?O?p?e?n?F?i?l?e?D?i?a?l?o?g?(?)?;?
? ? ? ? ? ? ? ? ? ? ? ?o?p?e?n?f?i?l?e?j?p?g?.?F?i?l?t?e?r? = "j?p?g?圖?片?(?*?.?j?p?g?)?|?*?.?j?p?g?|?g?i?f?圖?片?(?*?.?g?i?f?)?|?*?.?g?i?f";?
? ? ? ? ? ? ? ? ? ? ? ?o?p?e?n?f?i?l?e?j?p?g?.?F?i?l?t?e?r?I?n?d?e?x? = 0;?
? ? ? ? ? ? ? ? ? ? ? ?o?p?e?n?f?i?l?e?j?p?g?.?R?e?s?t?o?r?e?D?i?r?e?c?t?o?r?y? = t?r?u?e;?
? ? ? ? ? ? ? ? ? ? ? ?o?p?e?n?f?i?l?e?j?p?g?.?M?u?l?t?i?s?e?l?e?c?t? = f?a?l?s?e;?
? ? ? ? ? ? ? ? ? ? ? i?f ?(?o?p?e?n?f?i?l?e?j?p?g?.?S?h?o?w?D?i?a?l?o?g?(?)? =?= t?r?u?e)?
? ? ? ? ? ? ? ? ? ? ? ?{?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?f?i?l?e?p?a?t?h? = ?o?p?e?n?f?i?l?e?j?p?g?.?F?i?l?e?N?a?m?e?;?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?I?m?a?g?e? ?i?m?g? = n?e?w ?I?m?a?g?e?(?)?;?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?B?i?t?m?a?p?I?m?a?g?e? ?b?I?m?g? = n?e?w ?B?i?t?m?a?p?I?m?a?g?e?(?)?;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?i?m?g?.?I?s?E?n?a?b?l?e?d? = t?r?u?e;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?b?I?m?g?.?B?e?g?i?n?I?n?i?t?(?)?;?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?b?I?m?g?.?U?r?i?S?o?u?r?c?e? = n?e?w ?U?r?i?(?f?i?l?e?p?a?t?h?,? ?U?r?i?K?i?n?d?.?R?e?l?a?t?i?v?e?)?;?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?b?I?m?g?.?E?n?d?I?n?i?t?(?)?;?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?i?m?g?.?S?o?u?r?c?e? = ?b?I?m?g?;? ? ?
? /?/M?e?s?s?a?g?e?B?o?x?.?S?h?o?w?(?b?I?m?g?.?W?i?d?t?h?.?T?o?S?t?r?i?n?g?(?)? ?+? ?"?,?"? ?+? ?b?I?m?g?.?H?e?i?g?h?t?.?T?o?S?t?r?i?n?g?(?)?)?;
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? /?* ?調?整?圖?片?大?小?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?i?f? ?(?b?I?m?g?.?H?e?i?g?h?t? ?>? ?1?0?0? ?|?|? ?b?I?m?g?.?W?i?d?t?h? ?>? ?1?0?0?)?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?{?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?i?m?g?.?H?e?i?g?h?t? ?=? ?b?I?m?g?.?H?e?i?g?h?t? ?*? ?0?.?2?;?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?i?m?g?.?W?i?d?t?h? ?=? ?b?I?m?g?.?W?i?d?t?h? ?*? ?0?.?2?;?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?}*?/
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?i?m?g?.?S?t?r?e?t?c?h? = ?S?t?r?e?t?c?h?.?U?n?i?f?o?r?m?;? ? /?/圖?片?縮?放?模?式
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? n?e?w ?I?n?l?i?n?e?U?I?C?o?n?t?a?i?n?e?r?(?i?m?g?,? ?r?i?c?h?T?e?x?t?B?o?x?1?.?S?e?l?e?c?t?i?o?n?.?S?t?a?r?t?)?;?
/?/插?入?圖?片?到?選?定?位?置
? ? ? ? ? ? ? ? ? ? ? ?}?
? ? ? ? ? ? ? ?}
這樣就插入了一張圖片到RichTextBox里了,是不是很簡單呢!
本站文章除注明轉載外,均為本站原創或翻譯。歡迎任何形式的轉載,但請務必注明出處、不得修改原文相關鏈接,如果存在內容上的異議請郵件反饋至chenjj@fc6vip.cn
文章轉載自:網絡轉載