【WPF】如何保存RichTextBox的文本到数据库?以及如何对RichTextBox的Document做绑定?...

这几天一直有人问我如何保存RichTextBox的文本到数据库,包括格式等等,然后需要的再从数据库取出来,并且显示到RichTextBox中。

其实,RichTextBox的文本是一个FlowDocument类型的对象,我们只需要利用XamlReader和XamlWriter就能很好的完成上述工作。

 

【保存Document到流】

FlowDocument document = richTextBox.Document;

Stream s = new MemoryStream();  // 其他的什么Stream类型都没问题
XamlWriter.Save(document, s);

// 拿到s之后,再转化成二进制数据写到数据库就OK了

byte[] data = new byte[s.Length];

s.Position = 0;

s.Read(byte, 0, s.Length);

s.Close();

// 拿着data干啥都行

// ……

 

【从数据库中读取】

// data是从数据库中读出来的二进制数据

Stream s = new MemoryStream(data);

FlowDocument doc = XamlReader.Load(s) as FlowDocument;
s.Close();
richTextBox.Document = doc;

 

PS:有人问过我如何对RichTextBox的Document属性做绑定,由于RichTextBox的Document属性不是一个DependencyProperty,

所以我采用的是继承RichTextBox,自己定义一个BindableDocument的DependencyProperty来做。

<!-- <br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->      public   class  BindableRichTextBox : RichTextBox
    
{
        
public  FlowDocument BindableDocument
        
{
            
get   return  (FlowDocument)GetValue(TextProperty); }
            
set   { SetValue(TextProperty, value); }
        }


        
//  Using a DependencyProperty as the backing store for Text.  This enables animation, styling, binding, etc
         public   static   readonly  DependencyProperty TextProperty  =
            DependencyProperty.Register(
" BindableDocument " typeof (FlowDocument),  typeof (BindableRichTextBox),  new  UIPropertyMetadata( null new  PropertyChangedCallback(OnTextPropertyChanged)));

        
private   static   void  OnTextPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
        
{
            BindableRichTextBox textBox 
=  sender  as  BindableRichTextBox;
            
if  (textBox  !=   null )
            
{
                textBox._changeFromBinding 
=   true ;
                textBox.OnTextPropertyChanged(e);                
            }

        }


        
//  防止死锁,比如A变了通知B,B变了又通知A
         private   bool  _changeFromBinding  =   false ;

        
//  当BindableDocument属性变化时,通知Document属性
         protected   virtual   void  OnTextPropertyChanged(DependencyPropertyChangedEventArgs e)
        
{
            
if  (_changeFromBinding)
            
{
                
this .Document  =  e.NewValue  as  FlowDocument;
            }

        }


        
//  当Document属性变化时,通知BindableDocument属性
         protected   override   void  OnTextChanged(TextChangedEventArgs e)
        
{
            
base .OnTextChanged(e);
            
if  ( ! _changeFromBinding)
            
{               
                
this .BindableDocument  =   this .Document;
            }

            
//  放到外面
            _changeFromBinding  =   false ;
        }

    }

 

做了个小程序,绑定了一个TextBox的Text到RichTextBox。 下载

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值