Miglioramenti UI e logica automazione, versione 1.0.1.0
- Aggiornamento alla versione 1.0.1.0. - Migliorata la gestione del layout in `MainWindow.xaml`. - Aggiunti controlli avanzati per timer e click multipli. - Introdotte strategie multiple per click affidabili. - Migliorata gestione di errori e timeout con log dettagliati. - Aggiunto supporto per il recupero del nome utente dalla pagina. - Aggiornati i metadati dell'app con nuovo nome e autore. - Abilitata la firma del pacchetto e configurazioni di build. - Ottimizzazioni generali per stabilità e responsività.
This commit is contained in:
@@ -71,9 +71,9 @@
|
||||
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="360" MinWidth="220" />
|
||||
<ColumnDefinition Width="1*" MinWidth="260" />
|
||||
<ColumnDefinition Width="6" />
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="2*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<!-- Left panel: fixed height, resizable width -->
|
||||
@@ -88,6 +88,8 @@
|
||||
<RowDefinition Height="Auto" /> <!-- Stats -->
|
||||
<RowDefinition Height="Auto" /> <!-- Settings -->
|
||||
<RowDefinition Height="Auto" /> <!-- Price -->
|
||||
<RowDefinition Height="Auto" /> <!-- Smart bid control -->
|
||||
<RowDefinition Height="Auto" /> <!-- Advanced timing control -->
|
||||
<RowDefinition Height="Auto" /> <!-- Bidders label -->
|
||||
<RowDefinition Height="Auto" /> <!-- Bidders grid -->
|
||||
<RowDefinition Height="Auto" /> <!-- Log label -->
|
||||
@@ -154,9 +156,35 @@
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
|
||||
<TextBlock Grid.Row="8" Margin="12,12,12,6" Text="Elenco scommettitori (per numero scommesse):" />
|
||||
<!-- New row for Smart Bid Control -->
|
||||
<StackPanel Grid.Row="8" Orientation="Horizontal" Margin="12,8,12,0">
|
||||
<TextBlock Text="Controllo intelligente:" Margin="0,0,8,0" VerticalAlignment="Center" />
|
||||
<CheckBox x:Name="SmartBidControlCheckBox" Content="Attivo" IsChecked="True" Margin="0,0,12,0" VerticalAlignment="Center" />
|
||||
<TextBlock Text="Minima differenza prezzo:" Margin="12,0,6,0" VerticalAlignment="Center" />
|
||||
<TextBox x:Name="MinPriceDifferenceBox" Style="{StaticResource NumericBoxStyle}" Text="0" ToolTip="0 = disabilitato" TextChanged="MinPriceDifferenceBox_TextChanged" />
|
||||
</StackPanel>
|
||||
|
||||
<DataGrid x:Name="BiddersGrid" Grid.Row="9" Margin="12,0,12,0" AutoGenerateColumns="False" HeadersVisibility="Column" CanUserAddRows="False" IsReadOnly="True" Height="120" Background="#091018" RowBackground="#0B1220" AlternatingRowBackground="#081016" Foreground="#E6EDF3" GridLinesVisibility="None">
|
||||
<!-- New row for Advanced Timing Control -->
|
||||
<StackPanel Grid.Row="9" Orientation="Horizontal" Margin="12,8,12,0">
|
||||
<StackPanel Orientation="Vertical">
|
||||
<TextBlock>Timer Click</TextBlock>
|
||||
<TextBox x:Name="ClickTimerBox" Style="{StaticResource NumericBoxStyle}" Text="1" ToolTip="Secondo del timer per il click (0-3)" TextChanged="ClickTimerBox_TextChanged" />
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Orientation="Vertical" Margin="12,0,0,0">
|
||||
<TextBlock>Ritardo (ms)</TextBlock>
|
||||
<TextBox x:Name="ClickDelayBox" Style="{StaticResource NumericBoxStyle}" Text="200" ToolTip="Ritardo aggiuntivo in millisecondi" TextChanged="ClickDelayBox_TextChanged" />
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Orientation="Vertical" Margin="12,0,0,0">
|
||||
<TextBlock>Multi-Click</TextBlock>
|
||||
<CheckBox x:Name="MultiClickCheckBox" Content="Attivo" IsChecked="False" Margin="0,6,0,0" VerticalAlignment="Center" ToolTip="Click multipli per maggiore affidabilità" />
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
|
||||
<TextBlock Grid.Row="10" Margin="12,12,12,6" Text="Elenco utenti (per numero puntate):" />
|
||||
|
||||
<DataGrid x:Name="BiddersGrid" Grid.Row="11" Margin="12,0,12,0" AutoGenerateColumns="False" HeadersVisibility="Column" CanUserAddRows="False" IsReadOnly="True" Height="120" Background="#091018" RowBackground="#0B1220" AlternatingRowBackground="#081016" Foreground="#E6EDF3" GridLinesVisibility="None">
|
||||
<DataGrid.Resources>
|
||||
<Style TargetType="DataGridColumnHeader">
|
||||
<Setter Property="Background" Value="#0F1720" />
|
||||
@@ -175,9 +203,9 @@
|
||||
</DataGrid.Columns>
|
||||
</DataGrid>
|
||||
|
||||
<TextBlock Grid.Row="10" Margin="12,12,12,6" Text="Log operazioni:" />
|
||||
<TextBlock Grid.Row="12" Margin="12,12,12,6" Text="Log operazioni:" />
|
||||
|
||||
<TextBox x:Name="LogBox" Grid.Row="11" Margin="12" IsReadOnly="True" VerticalScrollBarVisibility="Auto" TextWrapping="Wrap" AcceptsReturn="True" Style="{StaticResource LogBoxStyle}" />
|
||||
<TextBox x:Name="LogBox" Grid.Row="13" Margin="12" IsReadOnly="True" VerticalScrollBarVisibility="Auto" TextWrapping="Wrap" AcceptsReturn="True" Style="{StaticResource LogBoxStyle}" />
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -12,6 +12,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3530-prerelease" />
|
||||
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.6584" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
Reference in New Issue
Block a user