Remove DeliveryReceptionWindow
This commit is contained in:
@ -181,7 +181,8 @@ namespace Elwig.Windows {
|
|||||||
|
|
||||||
private void GradationKmwInput_LostFocus(object sender, RoutedEventArgs evt) {
|
private void GradationKmwInput_LostFocus(object sender, RoutedEventArgs evt) {
|
||||||
InputLostFocus((TextBox)sender, Validator.CheckGradationKmw);
|
InputLostFocus((TextBox)sender, Validator.CheckGradationKmw);
|
||||||
if (!GradationKmwInput.Text.Contains(',')) GradationKmwInput.Text += ",0";
|
if (GradationKmwInput.Text.Length != 0 && !GradationKmwInput.Text.Contains(','))
|
||||||
|
GradationKmwInput.Text += ",0";
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AttributesInput_SelectionChanged(object sender, ItemSelectionChangedEventArgs evt) {
|
private void AttributesInput_SelectionChanged(object sender, ItemSelectionChangedEventArgs evt) {
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
<Window x:Class="Elwig.Windows.DeliveryReceptionWindow"
|
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
||||||
xmlns:local="clr-namespace:Elwig.Windows"
|
|
||||||
mc:Ignorable="d"
|
|
||||||
Title="Übernahme" Height="450" Width="800">
|
|
||||||
<Grid>
|
|
||||||
|
|
||||||
</Grid>
|
|
||||||
</Window>
|
|
@ -1,9 +0,0 @@
|
|||||||
using System.Windows;
|
|
||||||
|
|
||||||
namespace Elwig.Windows {
|
|
||||||
public partial class DeliveryReceptionWindow : Window {
|
|
||||||
public DeliveryReceptionWindow() {
|
|
||||||
InitializeComponent();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Reference in New Issue
Block a user