标题:关于代码中的大规模替换
取消只看楼主
csharpluntan
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
威 望:7
帖 子:197
专家分:1122
注 册:2013-4-24
结帖率:100%
已结贴  问题点数:20 回复次数:1 
关于代码中的大规模替换
在编制大规模程序代码的时候,出现一些由于粗心大意导致的大小写问题
如下粉红色标记,如何实现快速实现CheckedListBoxPossibleValue替换为小写的checkedListBoxPossibleValue;


            InitializeComponent();
            // Add a tenth element to the CheckedListBox.
            this.CheckedListBoxPossibleValue.Items.Add("eleven");
        }

        private void Form1_Click(object sender, EventArgs e)
        {

        }

        private void buttonMove_Click(object sender, EventArgs e)
        {
            // Check if there are any checked items in the CheckedListBox.
            if (this.CheckedListBoxPossibleValue.CheckedItems.Count > 0)
            {
                // Clear the ListBox we'll move the selections to
                this.listBoxSelected.Items.Clear();

                // Loop through the CheckedItems collection of the CheckedListBox
                // and add the items in the Selected ListBox
                foreach (string item in this.CheckedListBoxPossibleValue.CheckedItems)
                {
                    this.listBoxSelected.Items.Add(item.ToString());
                }

                // Clear all the checks in the CheckedListBox
                for (int i = 0; i < this.checkedListBoxPossibleValue.Items.Count; i++)
                    this.checkedListBoxPossibleValue.SetItemChecked(i, false);
            }

        }
搜索更多相关主题的帖子: private void element 粉红色 
2013-05-16 15:50
csharpluntan
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
威 望:7
帖 子:197
专家分:1122
注 册:2013-4-24
得分:0 
请问lantian8134版主 重构的具体用法 最好举个例子 谢谢

投之以桃,报之以李
2013-05-17 11:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-407254-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.591025 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved