Compare commits

..

2 Commits

Author SHA1 Message Date
a7de435bf2 Сдал 2023-09-21 10:11:33 +04:00
f47f91884e Вроде что-то готово 2023-09-20 23:39:14 +04:00
17 changed files with 488 additions and 76 deletions

View File

@ -1,6 +0,0 @@
namespace VisualComponentsLib
{
public class Class1
{
}
}

View File

@ -1,4 +1,4 @@
namespace WinForms
namespace VisualComponentsLib
{
partial class MyDropDownList
{

View File

@ -8,8 +8,9 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WinForms
namespace VisualComponentsLib
{
//Выпадающий список.Список заполняется через метод, передающий список строк
public partial class MyDropDownList : UserControl
{
public MyDropDownList()

View File

@ -1,4 +1,64 @@
<root>
<?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">

View File

@ -1,4 +1,4 @@
namespace WinForms
namespace VisualComponentsLib
{
partial class MyEmailTextBox
{

View File

@ -9,14 +9,15 @@ using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WinForms
namespace VisualComponentsLib
{
//Поле для ввода адреса электронной почты (адрес электронной почты должен соответствовать шаблону)
public partial class MyEmailTextBox : UserControl
{
//Шаблон для textbox
private string pattern;
//Пример ввода
private string example = "ti@gmail.com";
private string example = "example@gmail.com";
public MyEmailTextBox()
{
InitializeComponent();
@ -72,7 +73,7 @@ namespace WinForms
}
private void textBox_Enter(object sender, EventArgs e)
{
int VisibleTime = 2000; //ms
int VisibleTime = 2000;
ToolTip tooltip = new ToolTip();
tooltip.Show(example, emailTextBox, 30, -20, VisibleTime);
}

View File

@ -1,4 +1,64 @@
<root>
<?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">

View File

@ -57,3 +57,4 @@
private System.Windows.Forms.ListBox listBoxObj;
}
}

View File

@ -10,6 +10,7 @@ using System.Windows.Forms;
namespace VisualComponentsLib
{
//Список значений. Список заполняется через метод, передающий список объектов
public partial class MyListBoxObjects : UserControl
{
//Макетная строка
@ -81,17 +82,21 @@ namespace VisualComponentsLib
}
return curObject;
}
public string Error
{
get; private set;
}
//параметризованный метод, у которого в передаваемых параметрах идет список объектов некого класса и через этот список идет заполнение ListBox;
public void AddInListBox<T>(List<T> objects)
{
if (layoutString == null || startSymbol == null || endSymbol == null)
{
MessageBox.Show("заполните информацию о макетной строке");
Error = "заполните информацию о макетной строке";
return;
}
if (!layoutString.Contains(startSymbol) || !layoutString.Contains(endSymbol))
{
MessageBox.Show("Макетная строка не содержит нужные элементы");
Error = "Макетная строка не содержит нужные элементы";
return;
}
foreach (var item in objects)
@ -106,3 +111,4 @@ namespace VisualComponentsLib
}
}
}
}

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VisualComponentsLib.Object
{
public class Student
{
public string Name { get; set; }
public string Group { get; set; }
public string Faculty { get; set; }
public int Course { get; set; }
public Student(string name, string group, string faculty, int course)
{
Name = name;
Group = group;
Faculty = faculty;
Course = course;
}
public Student()
{
}
}
}

View File

@ -7,13 +7,4 @@
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Update="MyDropDownList.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="MyEmailTextBox.cs">
<SubType>UserControl</SubType>
</Compile>
</ItemGroup>
</Project>

View File

@ -0,0 +1,231 @@
namespace WinForms
{
partial class FormForComponents
{
/// <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()
{
dropDownList = new VisualComponentsLib.MyDropDownList();
buttonAdd = new Button();
buttonInfo = new Button();
labelInfo = new Label();
buttonClear = new Button();
emailTextBox = new VisualComponentsLib.MyEmailTextBox();
labelShow = new Label();
buttonShow = new Button();
buttonSetExample = new Button();
labelExample = new Label();
textBoxExample = new TextBox();
listBoxObj = new VisualComponentsLib.MyListBoxObjects();
buttonAddObjects = new Button();
buttonShowItem = new Button();
labelShowInput = new Label();
SuspendLayout();
//
// dropDownList
//
dropDownList.Location = new Point(3, 3);
dropDownList.Margin = new Padding(3, 4, 3, 4);
dropDownList.Name = "dropDownList";
dropDownList.SelectedValue = "";
dropDownList.Size = new Size(196, 36);
dropDownList.TabIndex = 0;
//
// buttonAdd
//
buttonAdd.Location = new Point(3, 46);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(92, 29);
buttonAdd.TabIndex = 1;
buttonAdd.Text = "добавить";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += buttonAdd_Click;
//
// buttonInfo
//
buttonInfo.Location = new Point(211, 46);
buttonInfo.Name = "buttonInfo";
buttonInfo.Size = new Size(94, 29);
buttonInfo.TabIndex = 2;
buttonInfo.Text = "показать";
buttonInfo.UseVisualStyleBackColor = true;
buttonInfo.Click += buttonInfo_Click;
//
// labelInfo
//
labelInfo.AutoSize = true;
labelInfo.Location = new Point(205, 9);
labelInfo.Name = "labelInfo";
labelInfo.Size = new Size(154, 20);
labelInfo.TabIndex = 3;
labelInfo.Text = "Выбранный элемент";
//
// buttonClear
//
buttonClear.Location = new Point(101, 46);
buttonClear.Name = "buttonClear";
buttonClear.Size = new Size(94, 29);
buttonClear.TabIndex = 4;
buttonClear.Text = "очистить";
buttonClear.UseVisualStyleBackColor = true;
buttonClear.Click += buttonClear_Click;
//
// emailTextBox
//
emailTextBox.Location = new Point(12, 132);
emailTextBox.Margin = new Padding(3, 4, 3, 4);
emailTextBox.Name = "emailTextBox";
emailTextBox.Pattern = null;
emailTextBox.Size = new Size(179, 34);
emailTextBox.TabIndex = 5;
//
// labelShow
//
labelShow.AutoSize = true;
labelShow.Location = new Point(12, 170);
labelShow.Name = "labelShow";
labelShow.Size = new Size(76, 20);
labelShow.TabIndex = 10;
labelShow.Text = "проверка";
//
// buttonShow
//
buttonShow.Location = new Point(12, 196);
buttonShow.Name = "buttonShow";
buttonShow.Size = new Size(94, 29);
buttonShow.TabIndex = 9;
buttonShow.Text = "Проверка";
buttonShow.UseVisualStyleBackColor = true;
buttonShow.Click += buttonShow_Click;
//
// buttonSetExample
//
buttonSetExample.Location = new Point(12, 328);
buttonSetExample.Name = "buttonSetExample";
buttonSetExample.Size = new Size(188, 29);
buttonSetExample.TabIndex = 8;
buttonSetExample.Text = "Поменять пример";
buttonSetExample.UseVisualStyleBackColor = true;
buttonSetExample.Click += buttonSetExample_Click;
//
// labelExample
//
labelExample.AutoSize = true;
labelExample.Location = new Point(12, 263);
labelExample.Name = "labelExample";
labelExample.Size = new Size(147, 20);
labelExample.TabIndex = 7;
labelExample.Text = "Для ввода примера";
//
// textBoxExample
//
textBoxExample.Location = new Point(12, 295);
textBoxExample.Name = "textBoxExample";
textBoxExample.Size = new Size(188, 27);
textBoxExample.TabIndex = 6;
//
// listBoxObj
//
listBoxObj.Location = new Point(388, 13);
listBoxObj.Margin = new Padding(3, 4, 3, 4);
listBoxObj.Name = "listBoxObj";
listBoxObj.SelectedIndex = -1;
listBoxObj.Size = new Size(368, 159);
listBoxObj.TabIndex = 11;
//
// buttonAddObjects
//
buttonAddObjects.Location = new Point(388, 179);
buttonAddObjects.Name = "buttonAddObjects";
buttonAddObjects.Size = new Size(380, 29);
buttonAddObjects.TabIndex = 12;
buttonAddObjects.Text = "Добавить";
buttonAddObjects.UseVisualStyleBackColor = true;
buttonAddObjects.Click += buttonAddObjects_Click;
//
// buttonShowItem
//
buttonShowItem.Location = new Point(388, 310);
buttonShowItem.Name = "buttonShowItem";
buttonShowItem.Size = new Size(380, 29);
buttonShowItem.TabIndex = 13;
buttonShowItem.Text = "Получить";
buttonShowItem.UseVisualStyleBackColor = true;
buttonShowItem.Click += buttonShowItem_Click;
//
// labelShowInput
//
labelShowInput.AutoSize = true;
labelShowInput.Location = new Point(388, 273);
labelShowInput.Name = "labelShowInput";
labelShowInput.Size = new Size(54, 20);
labelShowInput.TabIndex = 14;
labelShowInput.Text = "Вывод";
//
// Form1
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(dropDownList);
Controls.Add(buttonAdd);
Controls.Add(buttonInfo);
Controls.Add(labelInfo);
Controls.Add(buttonClear);
Controls.Add(emailTextBox);
Controls.Add(textBoxExample);
Controls.Add(labelExample);
Controls.Add(buttonSetExample);
Controls.Add(labelShow);
Controls.Add(buttonShow);
Controls.Add(listBoxObj);
Controls.Add(buttonAddObjects);
Controls.Add(buttonShowItem);
Controls.Add(labelShowInput);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
PerformLayout();
}
#endregion
private VisualComponentsLib.MyDropDownList dropDownList;
private Button buttonAdd;
private Button buttonInfo;
private Label labelInfo;
private Button buttonClear;
private VisualComponentsLib.MyEmailTextBox emailTextBox;
private TextBox textBoxExample;
private Label labelExample;
private Button buttonSetExample;
private Label labelShow;
private Button buttonShow;
private VisualComponentsLib.MyListBoxObjects listBoxObj;
private Button buttonAddObjects;
private Button buttonShowItem;
private Label labelShowInput;
}
}

View File

@ -0,0 +1,89 @@
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;
using VisualComponentsLib.Object;
namespace WinForms
{
public partial class FormForComponents : Form
{
List<string> list = new List<string>();
List<Student> students = new List<Student>();
public FormForComponents()
{
list = new List<string>();
list.AddRange(new string[] { "вилка", "ложка", "нож" });
Student student1 = new Student("Бондаренко", "ПИбд-32", "ФИСТ", 3);
Student student2 = new Student("Алейкин", "РТбд-21", "РТФ", 1);
Student student3 = new Student("Лексин", "ЛМККбд-43", "ГФ", 4);
students.Add(student1);
students.Add(student2);
students.Add(student3);
InitializeComponent();
dropDownList.LoadValues(new List<string>() { "вилочка", "ложечка", "ножик" });
emailTextBox.Pattern = @"^([\w\.\-]+)@([\w\-]+)((\.(\w){2,3})+)$";
listBoxObj.SetLayoutInfo("Фамилия *Name* Группа *Group* Факультет *Faculty* Курс *Course*", "*", "*");
dropDownList.ValueChanged += CustomEventHandler;
}
private void CustomEventHandler(object sender, EventArgs e)
{
MessageBox.Show("Выбранный элемент изменен");
}
private void buttonAdd_Click(object sender, EventArgs e)
{
dropDownList.LoadValues(list);
}
private void buttonInfo_Click(object sender, EventArgs e)
{
labelInfo.Text = dropDownList.SelectedValue;
}
private void buttonClear_Click(object sender, EventArgs e)
{
dropDownList.Clear();
}
private void buttonSetExample_Click(object sender, EventArgs e)
{
if (textBoxExample.Text == String.Empty)
{
return;
}
emailTextBox.setExample(textBoxExample.Text);
}
private void buttonShow_Click(object sender, EventArgs e)
{
try
{
if (emailTextBox.TextBoxValue != null)
{
labelShow.Text = "подходит";
}
else labelShow.Text = "не подходит";
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void buttonAddObjects_Click(object sender, EventArgs e)
{
listBoxObj.AddInListBox<Student>(students);
}
private void buttonShowItem_Click(object sender, EventArgs e)
{
string str = listBoxObj.GetObjectFromStr<Student>().Name + " " + listBoxObj.GetObjectFromStr<Student>().Group + " " + listBoxObj.GetObjectFromStr<Student>().Faculty + " " + listBoxObj.GetObjectFromStr<Student>().Course;
labelShowInput.Text = str;
}
}
}

View File

@ -1,39 +0,0 @@
namespace WinForms
{
partial class FormForMyComponents
{
/// <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()
{
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "Form1";
}
#endregion
}
}

View File

@ -1,10 +0,0 @@
namespace WinForms
{
public partial class FormForMyComponents : Form
{
public FormForMyComponents()
{
InitializeComponent();
}
}
}

View File

@ -11,7 +11,7 @@ namespace WinForms
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new FormForMyComponents());
Application.Run(new FormForComponents());
}
}
}