Search and delete

This commit is contained in:
Will0mane 2024-12-12 18:16:59 +01:00
parent ab13655f7a
commit ce2ff1fc4a
5 changed files with 310 additions and 1 deletions

View File

@ -37,6 +37,8 @@
literalBox = new CheckBox();
saveButton = new Button();
listView1 = new ListView();
removeButton = new Button();
findButton = new Button();
SuspendLayout();
//
// sourceBox
@ -127,12 +129,35 @@
listView1.TabIndex = 9;
listView1.UseCompatibleStateImageBehavior = false;
listView1.View = View.List;
listView1.KeyDown += listView1_KeyDown;
//
// removeButton
//
removeButton.Location = new Point(750, 395);
removeButton.Name = "removeButton";
removeButton.Size = new Size(26, 29);
removeButton.TabIndex = 10;
removeButton.Text = "-";
removeButton.UseVisualStyleBackColor = true;
removeButton.Click += removeButton_Click;
//
// findButton
//
findButton.Location = new Point(718, 395);
findButton.Name = "findButton";
findButton.Size = new Size(26, 29);
findButton.TabIndex = 11;
findButton.Text = "?";
findButton.UseVisualStyleBackColor = true;
findButton.Click += findButton_Click;
//
// MainUI
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(findButton);
Controls.Add(removeButton);
Controls.Add(listView1);
Controls.Add(saveButton);
Controls.Add(literalBox);
@ -158,5 +183,7 @@
private CheckBox literalBox;
private Button saveButton;
private ListView listView1;
private Button removeButton;
private Button findButton;
}
}

View File

@ -54,13 +54,63 @@ namespace orchestrator_ui
listView1.Items.Add(stringBuilder.ToString());
}
private void saveButton_Click(object sender, EventArgs e)
{
List<String> list = new List<String>();
foreach (ListViewItem item in listView1.Items) {
foreach (ListViewItem item in listView1.Items)
{
list.Add(item.Text);
}
// abs
File.WriteAllLines(FileName, list.ToArray());
}
private void delete()
{
foreach (ListViewItem eachItem in listView1.SelectedItems)
{
listView1.Items.Remove(eachItem);
}
}
private void removeButton_Click(object sender, EventArgs e)
{
delete();
}
private void listView1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Delete)
{
delete();
}
}
private void findButton_Click(object sender, EventArgs e)
{
SearchForm searchForm = new SearchForm();
if(searchForm.ShowDialog() == DialogResult.OK)
{
string filter = searchForm.getFilter();
listView1.SelectedItems.Clear();
bool found = false;
foreach (ListViewItem item in listView1.Items)
{
if(item.Text.Contains(filter))
{
item.Selected = true;
listView1.Select();
found = true;
}
}
if(!found)
{
MessageBox.Show("No entry found.");
}
}
}
}
}

82
orchestrator-ui/SearchForm.Designer.cs generated Normal file
View File

@ -0,0 +1,82 @@
namespace orchestrator_ui
{
partial class SearchForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
textBox1 = new TextBox();
label1 = new Label();
ok = new Button();
SuspendLayout();
//
// textBox1
//
textBox1.Location = new Point(83, 54);
textBox1.Name = "textBox1";
textBox1.Size = new Size(125, 27);
textBox1.TabIndex = 0;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(83, 31);
label1.Name = "label1";
label1.Size = new Size(76, 20);
label1.TabIndex = 1;
label1.Text = "Search for";
//
// ok
//
ok.Location = new Point(103, 101);
ok.Name = "ok";
ok.Size = new Size(94, 29);
ok.TabIndex = 2;
ok.Text = "OK";
ok.UseVisualStyleBackColor = true;
ok.Click += ok_Click;
//
// SearchForm
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(300, 153);
Controls.Add(ok);
Controls.Add(label1);
Controls.Add(textBox1);
Name = "SearchForm";
Text = "Search";
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox textBox1;
private Label label1;
private Button ok;
}
}

View File

@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace orchestrator_ui
{
public partial class SearchForm : Form
{
public SearchForm()
{
InitializeComponent();
}
public string getFilter()
{
return textBox1.Text;
}
private void ok_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
}
}
}

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>