Exemple #1
0
        private void btnFullSizeEditor_ItemClick(object sender, ItemClickEventArgs e)
        {
            var fullEditor = new FullWinRichtEdit {
                RtfText = RtfText, Text = ControlText
            };

            fullEditor.ShowDialog();
            RtfText     = fullEditor.RtfText;
            ControlText = fullEditor.Text;
        }
        private void btnFullSizeEditor_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) {
            var fullEditor = new FullWinRichtEdit { RtfText = RtfText };
            fullEditor.ShowDialog();
            RtfText = fullEditor.RtfText;

        }
Exemple #3
0
 private void btnFullSizeEditor_ItemClick(object sender, ItemClickEventArgs e) {
     var fullEditor = new FullWinRichtEdit { RtfText = RtfText, Text = ControlText };
     fullEditor.ShowDialog();
     RtfText = fullEditor.RtfText;
     ControlText = fullEditor.Text;
 }