-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReproductor.cs
420 lines (324 loc) · 11.6 KB
/
Reproductor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Proyecto_Reproductor
{
public partial class Reproductor : Form
{
private string connectionString = @"Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=Login;Data Source=DESKTOP-SV6GQVL\SQLEXPRESS";
private string nombreUsuarioActual;
public Reproductor(string usuario)
{
InitializeComponent();
customizeDesign();
this.nombreUsuarioActual = usuario;
}
private void customizeDesign()
{
panelMediaSubMenu.Visible = false;
panelReproductorSubMenu.Visible = false;
//..
}
private void hideSubMenu()
{
if (panelMediaSubMenu.Visible == true)
panelMediaSubMenu.Visible = false;
if (panelReproductorSubMenu.Visible == true)
panelReproductorSubMenu.Visible = false;
}
private void showSubMenu(Panel subMenu)
{
if (subMenu.Visible == false)
{
hideSubMenu();
subMenu.Visible = true;
}
else
{
subMenu.Visible = false;
}
}
private void Reproductor_Load(object sender, EventArgs e)
{
lbluser.Text = Form1.userFullName;
string userFullname = lbluser.Text;
MostrarImagenPerfil(nombreUsuarioActual);
}
private void imagenesPerfiles1_Click(object sender, EventArgs e)
{
}
private void Reproductor_FormClosed(object sender, FormClosedEventArgs e)
{
//if (MessageBox.Show("Estas seguro de querer cerrar la aplicación?", "Warning",
// MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes)
// this.Close();
////
////mi codigo..
////
//hideSubMenu();
}
private void btnsalir_Click_1(object sender, EventArgs e)
{
if (MessageBox.Show("Estas seguro de querer cerrar la aplicación?", "Warning",
MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes)
this.Close();
}
#region SubMenu
#endregion
private void btnmedios_Click(object sender, EventArgs e)
{
showSubMenu(panelMediaSubMenu);
}
private void button2_Click(object sender, EventArgs e)
{
//
//mi codigo..
//
hideSubMenu();
}
private void button3_Click(object sender, EventArgs e)
{
//
//mi codigo..
//
hideSubMenu();
}
private void button4_Click(object sender, EventArgs e)
{
openChildform(new artistas());
//
//mi codigo..
//
hideSubMenu();
}
private void button5_Click(object sender, EventArgs e)
{
openChildform(new perfil());
//
//mi codigo..
//
hideSubMenu();
}
private void button1_Click(object sender, EventArgs e)
{
showSubMenu(panelReproductorSubMenu);
}
private void button9_Click(object sender, EventArgs e)
{
openChildform(new mp3());
//
//mi codigo..
//
hideSubMenu();
}
private void button8_Click(object sender, EventArgs e)
{
openChildform(new mp4());
//
//mi codigo..
//
hideSubMenu();
}
private void button7_Click(object sender, EventArgs e)
{
//
//mi codigo..
//
hideSubMenu();
}
private void button6_Click(object sender, EventArgs e)
{
//
//mi codigo..
//
hideSubMenu();
}
private void button10_Click(object sender, EventArgs e)
{
openChildform(new youtube());
//
//mi codigo..
//
hideSubMenu();
}
private void button11_Click(object sender, EventArgs e)
{
openChildform(new spotifytest());
}
private void button15_Click(object sender, EventArgs e)
{
//
//mi codigo..
//
hideSubMenu();
}
private void button14_Click(object sender, EventArgs e)
{
openChildform(new spotifytest());
//
//mi codigo..
//
hideSubMenu();
}
private void button13_Click(object sender, EventArgs e)
{
//
//mi codigo..
//
hideSubMenu();
}
private void button12_Click(object sender, EventArgs e)
{
openChildform(new youtube());
//
//mi codigo..
//
hideSubMenu();
}
private void button16_Click(object sender, EventArgs e)
{
if (MessageBox.Show("Estas seguro de querer cerrar la aplicación?", "Warning",
MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes)
this.Close();
//
//mi codigo..
//
hideSubMenu();
}
private Form activeForm = null;
private void openChildform(Form childForm)
{
if (activeForm != null)
activeForm.Close();
activeForm = childForm;
childForm.TopLevel = false;
childForm.FormBorderStyle = FormBorderStyle.None;
childForm.Dock = DockStyle.Fill;
panelchildform.Controls.Add(childForm);
panelchildform.Tag = childForm;
childForm.BringToFront();
childForm.Show();
}
public mp4 Formulariomp4 { get; set; }
private void button19_Click(object sender, EventArgs e)
{
button19.SendToBack();
//vlcControl1.Pause();
}
private int ObtenerIdUsuarioActual()
{
int idUsuario = 0;
// Establecer la conexión con la base de datos
string connectionString = @"Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=Login;Data Source=DESKTOP-SV6GQVL\SQLEXPRESS";
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
// Crear y ejecutar la consulta SQL para obtener el ID del usuario
string query = "SELECT u_id FROM Users WHERE u_username = @Username";
SqlCommand command = new SqlCommand(query, connection);
command.Parameters.AddWithValue("@Username", nombreUsuarioActual);
SqlDataReader reader = command.ExecuteReader();
if (reader.Read())
{
// Verificar si se obtiene el valor del ID de usuario correctamente
if (!reader.IsDBNull(0))
{
idUsuario = reader.GetInt32(0);
}
else
{
Console.WriteLine("El valor del ID de usuario es nulo.");
}
}
else
{
Console.WriteLine("No se encontró el usuario en la base de datos.");
}
reader.Close();
}
return idUsuario;
}
private void GuardarRutaImagenEnSQL(string rutaImagen, string nombreUsuario)
{
// Realizar la conexión a la base de datos y ejecutar la consulta SQL para guardar la ruta de la imagen
using (SqlConnection connection = new SqlConnection(connectionString))
{
string consulta = "UPDATE Users SET u_image_path = @u_image_path WHERE u_username = @u_username";
SqlCommand command = new SqlCommand(consulta, connection);
command.Parameters.AddWithValue("@u_image_path", rutaImagen);
command.Parameters.AddWithValue("@u_username", nombreUsuarioActual);
connection.Open();
command.ExecuteNonQuery();
}
}
private void imagenesPerfiles1_DoubleClick_1(object sender, EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Filter = "Archivos de imagen|*.*";
openFileDialog.Title = "Seleccionar imagen";
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
string rutaImagen = openFileDialog.FileName;
// Ajustar la ruta de la imagen para manejar caracteres especiales y barras invertidas
// Codificar la ruta de la imagen
// Guardar la ruta de la imagen en la base de datos
GuardarRutaImagenEnSQL(rutaImagen, nombreUsuarioActual);
// Mostrar la imagen en el PictureBox
imagenesPerfiles1.Image = Image.FromFile(rutaImagen);
}
}
public void MostrarImagenPerfil(string username)
{
// Realizar la conexión a la base de datos y ejecutar la consulta SQL para obtener los datos de la imagen
using (SqlConnection connection = new SqlConnection(connectionString))
{
string consulta = "SELECT u_image_path FROM Users WHERE u_username = @u_username";
SqlCommand command = new SqlCommand(consulta, connection);
command.Parameters.AddWithValue("@u_username", username);
connection.Open();
string rutaImagen = command.ExecuteScalar()?.ToString();
if (!string.IsNullOrEmpty(rutaImagen))
{
try
{
imagenesPerfiles1.Image = Image.FromFile(rutaImagen);
}
catch (Exception)
{
//MessageBox.Show("Error al cargar la imagen: " + ex.Message);
}
}
else
{
// Ruta de la imagen predeterminada
string rutaImagenPredeterminada = @"C:\Users\eduar\Downloads\fotofacebook.jpg";
// Verificar si la imagen predeterminada existe en la ruta especificada
imagenesPerfiles1.Image = Image.FromFile(rutaImagenPredeterminada);
}
}
}
private void imagenesPerfiles1_Click_1(object sender, EventArgs e)
{
}
private void lbluser_Click(object sender, EventArgs e)
{
}
private void panelMediaSubMenu_Paint(object sender, PaintEventArgs e)
{
}
private void panelchildform_Paint(object sender, PaintEventArgs e)
{
}
private void button2_Click_1(object sender, EventArgs e)
{
openChildform(new txt());
}
}
}