ListView.FindItemWithText()
查找以指定文本值开头的第一个 ListViewItem。
代码示例说明了 FindItemWithText 方法。
此方法将返回以指定文本开头的第一个项。例如,如果 ListView 包含两个列表项,第一个项的文本设置为“angle bracket”,而第二个项的文本设置为“bracket”,那么,在调用 FindItemWithText 时将 brack 作为参数传递会返回文本为“bracket”的项。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Demo04
{
public partial class MainForm : Form
{
// Declare the ListView and Button for the example.
ListView findListView = new ListView();
Button findButton = new Button();
public MainForm()
{
InitializeComponent();
this.InitializeFindListView();
}
private void InitializeFindListView()
{
// Set up the location and event handling for the button.
this.findButton.Text = "Find";
this.findButton.AutoSize = true;
findButton.Click += new EventHandler(findButton_Click);
findButton.Location = new Point(10, 10);
// Set up the location of the ListView and add some items.
findListView.Location = new Point(10,
10 + this.findButton.Height + 7);
findListView.View = View.List;
findListView.Items.Add(new ListViewItem("angle bracket"));
findListView.Items.Add(new ListViewItem("bracket holder"));
findListView.Items.Add(new ListViewItem("bracket"));
// Add the button and ListView to the form.
this.Controls.Add(findButton);
this.Controls.Add(findListView);
}
void findButton_Click(object sender, EventArgs e)
{
// Call FindItemWithText, sending output to MessageBox.
ListViewItem item1 = findListView.FindItemWithText("brack");
if (item1 != null)
MessageBox.Show("Calling FindItemWithText passing 'brack': "
+ item1.ToString());
else
MessageBox.Show("Calling FindItemWithText passing 'brack': null");
}
}
}
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
在 Java 开发中,对象的创建是一个常见的场景,如果对象的创建和使用都写在一起,代码的耦合度高,也不利于后期的维护。我们可以使用工厂模式来解决这个问题,工厂模式是一个创建型模式,将对象的创建和使用分离开来,降低代码的耦合度,提高程序的可维护性和扩展性。 工厂…