Spostato blocco general in compoente indipendente

This commit is contained in:
2025-10-10 12:18:07 +02:00
parent bd8aa4b025
commit 55a84780a8
6 changed files with 225 additions and 119 deletions
+21
View File
@@ -1191,5 +1191,26 @@ namespace WebWindowComplex
}
#endregion Private Methods
private void SelectColor(string newVal)
{
if (m_CurrWindow != null)
{
m_CurrWindow.sColorMaterial = newVal;
}
}
private void SelectMat(string newVal)
{
if (m_CurrWindow != null)
{
m_CurrWindow.sMaterial = newVal;
}
}
private void SelectGlass(string newVal)
{
if (m_CurrWindow != null)
{
m_CurrWindow.sGlass = newVal;
}
}
}
}