wordWrapToolStripMenuItem

wordWrapToolStripMenuItem

本文介绍了如何在Windows窗体c#.net中创建记事本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的所有人

我几乎已经创建了一个使用Windows窗体和c#.net的记事本。在这个应用程序中我使用了richTextBox和menustrip控件,所有编码我已经完成但单词warp代码不起作用,我使用此代码但此代码显示错误实例引用未设置

wordWrapToolStripMenuItem .Checked =!(wordWrapToolStripMenuItem.Checked);

richTextBox1.WordWrap = wordWrapToolStripMenuItem.Checked;

请帮助我并建议wordwrap代码

还告诉我代码查找,查找下一个,替换和转到。

Dear All
I have almost crated a notepad for using windows form and c#.net . In this application i have used a richTextBox and menustrip control, all coding i have done but word warp code not work, i have using this code but this code show an error "instance ref not set"
wordWrapToolStripMenuItem.Checked = !(wordWrapToolStripMenuItem.Checked);
richTextBox1.WordWrap = wordWrapToolStripMenuItem.Checked;
Kindly please help me and advice the code of wordwrap
also advise me the code of find, find next, replace and goto.

推荐答案


这篇关于如何在Windows窗体c#.net中创建记事本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 02:12