mirror of
https://github.com/RaySollium99/MSNPSharp.git
synced 2025-09-05 14:27:45 -04:00
Add the files
This commit is contained in:
parent
f52694709e
commit
50aabc8afc
312 changed files with 95444 additions and 0 deletions
44
Example/MusicForm.cs
Normal file
44
Example/MusicForm.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue