-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix: Change Key Of Application is Now Possible by selecting ChangeKeyUsingKeyNo - Fix: Limited Key Length in DataExplorer - Fix: Writing Data in Backup Type Files failed - Fix: Copy Pasting Data in DataExplorerHexView failed when it contained CR.LF or WS - Fix: When Copy Pasting Data the DataLength is not refreshed after setting the cursor back to the top - Feature: UpdateScreen now showing the latest Changes
- Loading branch information
Showing
15 changed files
with
255 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Window | ||
x:Class="RFiDGear.View.UpdateNotifierView" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:dal="clr-namespace:RFiDGear.DataAccessLayer" | ||
xmlns:local="clr-namespace:RFiDGear.View" | ||
xmlns:v="clr-namespace:RFiDGear.View" | ||
Title="{Binding Caption}" | ||
Width="500" | ||
Height="600" | ||
WindowStartupLocation="CenterScreen"> | ||
<Window.Resources> | ||
<dal:ResourceLoader x:Key="Localization"/> | ||
</Window.Resources> | ||
<Grid Margin="0,0,0,0"> | ||
<Grid.RowDefinitions> | ||
<RowDefinition Height="*" /> | ||
<RowDefinition Height="42" /> | ||
</Grid.RowDefinitions> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="*" /> | ||
<ColumnDefinition Width="250" /> | ||
<ColumnDefinition Width="*" /> | ||
</Grid.ColumnDefinitions> | ||
<GroupBox | ||
x:Name="groupBox" | ||
Grid.ColumnSpan="3" | ||
Margin="10,10,10,10" | ||
HorizontalAlignment="Stretch" | ||
VerticalAlignment="Stretch" | ||
Header="GroupBox"> | ||
<TextBox | ||
HorizontalAlignment="Stretch" | ||
VerticalAlignment="Stretch" | ||
Margin="10,10,10,10" | ||
TextWrapping="Wrap" | ||
IsReadOnly="True" | ||
AcceptsReturn="True" | ||
AcceptsTab="True" | ||
Text="{Binding UpdateHistoryText, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"/> | ||
</GroupBox> | ||
<Button Grid.Column="1" | ||
HorizontalAlignment="Left" | ||
VerticalAlignment="Top" | ||
Margin="10,10,0,0" | ||
Grid.Row="1" | ||
Width="95" | ||
Command="{Binding ApplyAndExitCommand}" | ||
Content="{Binding LocalizationResourceSet, Converter={StaticResource Localization}, ConverterParameter='buttonSaveAndExitReaderSetupText'}" /> | ||
<Button Grid.Column="1" | ||
HorizontalAlignment="Right" | ||
Margin="0,10,10,0" | ||
Grid.Row="1" | ||
VerticalAlignment="Top" | ||
Width="95" | ||
Command="{Binding ApplyAndExitCommand}" | ||
Content="{Binding LocalizationResourceSet, Converter={StaticResource Localization}, ConverterParameter='buttonSaveAndExitReaderSetupText'}" | ||
/> | ||
</Grid> | ||
</Window> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
using System.Windows.Documents; | ||
using System.Windows.Input; | ||
using System.Windows.Media; | ||
using System.Windows.Media.Imaging; | ||
using System.Windows.Navigation; | ||
using System.Windows.Shapes; | ||
|
||
namespace RFiDGear.View | ||
{ | ||
/// <summary> | ||
/// Interaktionslogik für Splash.xaml | ||
/// </summary> | ||
public partial class UpdateNotifierView : Window | ||
{ | ||
public UpdateNotifierView() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.