747d4c746d
- Pulsante Delete cancella il record ma rimane nella pagina Search - Lettura file .ini adattata al lettore già presente nell'applicativo - Rinominati i file di configurazione in LicenceManager (.ini/.lic) - Rinominato il file d Log - Percorso KeyGenerator nel file .ini - Proposta data di oggi di default in NewLicencePage - ComboBox per ProductLevel con 1,5,10 - ComboBox in ordine di numero - Aggiunti "---ANY---" nelle comboBox di SearchKeyPage - SearchKey: Risultati di ricerca in ordine di numero - Adattamento al valore restituito (0 o 1) da KeyGenerator - Importazione AboutBox OmagCUT (DA SISTEMARE)
47 lines
1.8 KiB
XML
47 lines
1.8 KiB
XML
<EgtWPFLib5:EgtCustomWindow x:Class="MainWindowV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:LicenceManager="clr-namespace:LicenseManager"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
DataContext="{StaticResource MainWindowVM}"
|
|
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
|
|
Title="{Binding Title}"
|
|
MinHeight="300" MinWidth="400"
|
|
Width="800" Height="550"
|
|
Icon="LogoLicenceManager.Ico"
|
|
WindowStartupLocation="CenterScreen">
|
|
|
|
<!--Pannello principale -->
|
|
<!--<ContentControl Content="{Binding ProjectContent}"/>-->
|
|
|
|
<!-- ** Definizione della Grid della MainWindow ** -->
|
|
<Grid Name="MainWindowGrid">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="73*"/>
|
|
<ColumnDefinition Width="324*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="10*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<ContentControl Content="{Binding ProjectContent}" Grid.ColumnSpan="2" Grid.Row="1"/>
|
|
|
|
<!-- ** Definizione della Grid della Row 0 (Barra superiore) ** -->
|
|
<Grid Grid.ColumnSpan="2" Margin="0,0,-0.4,0.2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="11*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border Name="LogoBrd" Background="Transparent">
|
|
<Image Source="/LicenseManager;component/LogoLicenceManager.ico" Stretch="Uniform" Margin="1"/>
|
|
</Border>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtCustomWindow>
|