Problema de columnas
This commit is contained in:
parent
509c0f21d7
commit
7dbd993489
|
@ -60,9 +60,12 @@ namespace EscribePassword
|
||||||
}
|
}
|
||||||
else if (tipo == TiposEstadosPersistentes.Obsidean)
|
else if (tipo == TiposEstadosPersistentes.Obsidean)
|
||||||
{
|
{
|
||||||
Obsidean obs = new Obsidean();
|
// if (Passwords.Any(o => o.IsModified))
|
||||||
var tabla = EscribePassword.Passwords.ConvertPasswordsListToArray(Passwords);
|
{
|
||||||
obs.EscribirPasswords(tabla);
|
Obsidean obs = new Obsidean();
|
||||||
|
var tabla = EscribePassword.Passwords.ConvertPasswordsListToArray(Passwords);
|
||||||
|
obs.EscribirPasswords(tabla);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Método estático para cargar el estado desde un archivo JSON
|
// Método estático para cargar el estado desde un archivo JSON
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<TextBlock Text="Agregar" />
|
<TextBlock Text="Agregar" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Button>
|
</Button>
|
||||||
<Button Command="{Binding UtilizarCommand}" ToolTip="Use">
|
<Button Command="{Binding UtilizarCommand}" ToolTip="Use - Se puede usar el boton central del mouse.">
|
||||||
<StackPanel>
|
<StackPanel>
|
||||||
<Image Source="Icons/use.png" Width="24" Height="24" />
|
<Image Source="Icons/use.png" Width="24" Height="24" />
|
||||||
<TextBlock Text="Utilizar" />
|
<TextBlock Text="Utilizar" />
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
using CommunityToolkit.Mvvm.ComponentModel;
|
using CommunityToolkit.Mvvm.ComponentModel;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace EscribePassword
|
namespace EscribePassword
|
||||||
{
|
{
|
||||||
|
@ -13,6 +14,7 @@ namespace EscribePassword
|
||||||
[ObservableProperty]
|
[ObservableProperty]
|
||||||
private string categoria;
|
private string categoria;
|
||||||
|
|
||||||
|
|
||||||
public static List<Passwords> ConvertArrayToPasswordsList(string[,] tableArray)
|
public static List<Passwords> ConvertArrayToPasswordsList(string[,] tableArray)
|
||||||
{
|
{
|
||||||
var passwordsList = new List<Passwords>();
|
var passwordsList = new List<Passwords>();
|
||||||
|
@ -51,9 +53,9 @@ namespace EscribePassword
|
||||||
// Fill data
|
// Fill data
|
||||||
for (int i = 0; i < rows; i++)
|
for (int i = 0; i < rows; i++)
|
||||||
{
|
{
|
||||||
tableArray[i + 1, 0] = passwordsList[i].Usuario;
|
tableArray[i + 1, 0] = passwordsList[i].Categoria;
|
||||||
tableArray[i + 1, 1] = passwordsList[i].Password;
|
tableArray[i + 1, 1] = passwordsList[i].Usuario;
|
||||||
tableArray[i + 1, 2] = passwordsList[i].Categoria;
|
tableArray[i + 1, 2] = passwordsList[i].Password;
|
||||||
}
|
}
|
||||||
|
|
||||||
return tableArray;
|
return tableArray;
|
||||||
|
|
Loading…
Reference in New Issue