Beispiel #1
0
        private void createNewrtfFileToolStripMenuItem_Click(object sender, EventArgs e)
        {
            RtfEditor rtf = new RtfEditor()
            {
                MdiParent = this
            };

            rtf.Show();
            rtf.GetSetRtdFont   = new Font("Times New Roman", 12);
            tscbFontStyles.Text = rtf.RtdFontName;
            tscbFontSize.Text   = rtf.RtdFontSize.ToString();
        }
Beispiel #2
0
        private void openrtfFilesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            RtfEditor rtf = new RtfEditor()
            {
                MdiParent = this
            };

            if (rtf.OpenFile() == DialogResult.OK)
            {
                rtf.Show();
                tscbFontStyles.Text = rtf.RtdFontName;
                tscbFontSize.Text   = rtf.RtdFontSize.ToString();
            }
        }