You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<CheckBoxContent="No Looping Pointers"ToolTip="Removing duplicates, preventing application to stuck in closed cycle."Margin="5"IsChecked="{Binding Path=ViewModel.NoLooping}"IsEnabled="{Binding Path=ViewModel.InterfaceEnabled}"Foreground="#FFC8C8C8"/>
37
-
<CheckBoxToolTip="pro: Filter out incorrect/unstable pointers con: Works buggy while scanning strings"Content="Use Virtual Method Table"Margin="5"IsChecked="{Binding Path=ViewModel.UseMethodTable}"IsEnabled="{Binding Path=ViewModel.InterfaceEnabled}"Foreground="#FFC8C8C8"/>
38
-
<TextBoxToolTip="Recommended value is 3.Bigger structures has bigger VMT. You can change this if you know what you doing." materialDesign:HintAssist.Hint="Min VMT Length"Style="{StaticResource MaterialDesignFloatingHintTextBox}"
<CheckBoxToolTip="pro: Filter out incorrect/unstable pointers. con: Works buggy while scanning strings"Content="Use Virtual Method Table"Margin="5"IsChecked="{Binding Path=ViewModel.UseMethodTable}"IsEnabled="{Binding Path=ViewModel.InterfaceEnabled}"Foreground="#FFC8C8C8"/>
39
+
<CheckBoxToolTip="Strongly recommended for x64 process, can be buggy for x32 process"Content="Use memory pages for checking pointer"Margin="5"IsChecked="{Binding Path=ViewModel.UseMemoryPage}"IsEnabled="{Binding Path=ViewModel.InterfaceEnabled}"Foreground="#FFC8C8C8"/>
<TextBox materialDesign:HintAssist.Hint="Alignment"ToolTip="Scan step. For x32 bit process pointers and strings recommended alignment value is 4, for x64 recommended value is 8"Style="{StaticResource MaterialDesignFloatingHintTextBox}"
<ComboBox materialDesign:HintAssist.Hint="Alignment"ToolTip="Scan step. For x32 bit process pointers and strings recommended alignment value is 4, for x64 recommended value is 8"Style="{StaticResource MaterialDesignFloatingHintComboBox}"
<TextBox materialDesign:HintAssist.Hint="String Length"ToolTip="Maximum length of string bytes to read"Style="{StaticResource MaterialDesignFloatingHintTextBox}"
0 commit comments