Aggiunto ABGOption e modificato lista di test hardware
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Version>2.7.9.1313</Version>
|
||||
<Version>2.7.9.1615</Version>
|
||||
<Authors>Annamaria Sassi</Authors>
|
||||
<Company>Egalware</Company>
|
||||
<Description>Componente gestione Configurazioni avanzate Window per LUX</Description>
|
||||
@@ -37,3 +37,5 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace WebWindowComplex
|
||||
{
|
||||
public event EventHandler<OnPreviewEventArgs> OnPreview = delegate { };
|
||||
|
||||
private String m_sProfilePath;
|
||||
private string m_sProfilePath;
|
||||
public string sProfilePath
|
||||
{
|
||||
get
|
||||
@@ -1093,7 +1093,7 @@ namespace WebWindowComplex
|
||||
|
||||
internal void SetSelHardwareFromId(string sId)
|
||||
{
|
||||
m_SelHardware = m_HardwareList.FirstOrDefault(x => x.sId == sId);
|
||||
m_SelHardware = m_HardwareList.FirstOrDefault(x => x.sId == sId)?? new Hardware("","","","","",0,0);
|
||||
if (m_SelHardware != null)
|
||||
m_SelHardware = m_HardwareList[0];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user