Add the files

This commit is contained in:
iPedroLB 2023-07-15 01:45:29 -03:00
parent f52694709e
commit 50aabc8afc
312 changed files with 95444 additions and 0 deletions

44
Example/MusicForm.cs Normal file
View file

@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace MSNPSharpClient
{
public partial class MusicForm : Form
{
public MusicForm()
{
InitializeComponent();
}
public string Artist
{
get
{
return txtArtist.Text;
}
}
public string Song
{
get
{
return txtSong.Text;
}
}
public string Album
{
get
{
return txtSong.Text;
}
}
}
}