Compare commits
No commits in common. "f2b84ec28ea2a7a069051c3722b678a4d9899321" and "e6c971bf15ef76cff726cad1723d7bfb3c5147ca" have entirely different histories.
f2b84ec28e
...
e6c971bf15
@ -49,14 +49,6 @@
|
|||||||
</Setter.Value>
|
</Setter.Value>
|
||||||
</Setter>
|
</Setter>
|
||||||
</Style>
|
</Style>
|
||||||
<Style x:Key="HoverUnderlineTextBlockStyle" TargetType="TextBlock">
|
|
||||||
<Setter Property="TextDecorations" Value="None"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<DataTrigger Binding="{Binding IsMouseOver, RelativeSource={RelativeSource AncestorType=Button}}" Value="True">
|
|
||||||
<Setter Property="TextDecorations" Value="Underline"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
</Window.Resources>
|
</Window.Resources>
|
||||||
|
|
||||||
<Border CornerRadius="15" BorderThickness="20" BorderBrush="#FF282828">
|
<Border CornerRadius="15" BorderThickness="20" BorderBrush="#FF282828">
|
||||||
@ -129,8 +121,8 @@
|
|||||||
Foreground="#FF6332A0"
|
Foreground="#FF6332A0"
|
||||||
FontSize="12"
|
FontSize="12"
|
||||||
Width="66"
|
Width="66"
|
||||||
Margin="8,5,0,0"
|
Margin="8,5,0,0"/>
|
||||||
Style="{StaticResource HoverUnderlineTextBlockStyle}"/>
|
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
@ -87,17 +87,6 @@
|
|||||||
</Setter.Value>
|
</Setter.Value>
|
||||||
</Setter>
|
</Setter>
|
||||||
</Style>
|
</Style>
|
||||||
<Style x:Key="HoverUnderlineTextBlockStyle" TargetType="TextBlock">
|
|
||||||
<Setter Property="TextDecorations" Value="None"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<DataTrigger Binding="{Binding IsMouseOver, RelativeSource={RelativeSource AncestorType=Button}}" Value="True">
|
|
||||||
<Setter Property="TextDecorations" Value="Underline"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
<Style TargetType="Hyperlink">
|
|
||||||
<EventSetter Event="RequestNavigate" Handler="Hyperlink_RequestNavigate"/>
|
|
||||||
</Style>
|
|
||||||
</Window.Resources>
|
</Window.Resources>
|
||||||
|
|
||||||
<Border CornerRadius="15" BorderThickness="20" BorderBrush="#FF282828">
|
<Border CornerRadius="15" BorderThickness="20" BorderBrush="#FF282828">
|
||||||
@ -207,25 +196,25 @@
|
|||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
<!-- Checkbox -->
|
<!-- Checkbox -->
|
||||||
<Grid Margin="0,20,0,0" Height="30.1" Width="250">
|
<StackPanel Orientation="Horizontal" Margin="0,20,0,0" Height="29">
|
||||||
<CheckBox x:Name="checkboxAGB" Style="{StaticResource CustomCheckBoxStyle}" Checked="CheckBox_Checked" Unchecked="CheckBox_Unchecked" Margin="-25,0,235,0"/>
|
<CheckBox x:Name="checkboxAGB" Style="{StaticResource CustomCheckBoxStyle}" Checked="CheckBox_Checked" Unchecked="CheckBox_Unchecked"/>
|
||||||
<TextBlock FontSize="9" TextWrapping="Wrap" VerticalAlignment="Center" Height="24" Margin="15,0,-28,0">
|
<TextBlock FontSize="9" TextWrapping="Wrap" VerticalAlignment="Center" Height="24" Width="269">
|
||||||
<Run Text="Ich habe die " Foreground="White"/>
|
<Run Text="Ich habe die " Foreground="White"/>
|
||||||
<Run x:Name="nutzungsbedingungenRun" Text="Nutzungsbedingungen" Foreground="#FF6332A0"/>
|
<Run Text="Nutzungsbedingungen" Foreground="#FF6332A0"/>
|
||||||
<Run Text=" und die " Foreground="White"/>
|
<Run Text=" und die " Foreground="White"/>
|
||||||
<Run x:Name="datenschutzRun" Text="Datenschutzerklärung" Foreground="#FF6332A0"/>
|
<Run Text="Datenschutzerklärung" Foreground="#FF6332A0"/>
|
||||||
<Run Text=" von bib-talk gelesen und akzeptiert." Foreground="White"/>
|
<Run Text=" von bib-talk gelesen und akzeptiert." Foreground="White"/>
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
</Grid>
|
|
||||||
|
|
||||||
|
</StackPanel>
|
||||||
<Button x:Name="weiterbutton" Content="Weiter" Foreground="Gray" Background="#FF323134" BorderThickness="0" Margin="0,20,0,0" Height="30" BorderBrush="{x:Null}" Click="WeiterButton_Click" Style="{StaticResource NoHoverButtonStyle}"/>
|
<Button x:Name="weiterbutton" Content="Weiter" Foreground="Gray" Background="#FF323134" BorderThickness="0" Margin="0,20,0,0" Height="30" BorderBrush="{x:Null}" Click="WeiterButton_Click" Style="{StaticResource NoHoverButtonStyle}"/>
|
||||||
<Button Style="{StaticResource InvisibleButtonStyle}" Click="Login_Click">
|
<Button Style="{StaticResource InvisibleButtonStyle}" Click="Login_Click">
|
||||||
<TextBlock Text="Ich habe bereits einen Account"
|
<TextBlock Text="Ich habe bereits einen Account"
|
||||||
Foreground="#FF6332A0"
|
Foreground="#FF6332A0"
|
||||||
FontSize="12"
|
FontSize="12"
|
||||||
Width="167"
|
Width="167"
|
||||||
Margin="-130,5,0,0"
|
Margin="-130,5,0,0"/>
|
||||||
Style="{StaticResource HoverUnderlineTextBlockStyle}"/>
|
|
||||||
</Button>
|
</Button>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
@ -26,12 +25,6 @@ namespace bib_talk
|
|||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
|
|
||||||
{
|
|
||||||
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri) { UseShellExecute = true });
|
|
||||||
e.Handled = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void CloseButton_Click(object sender, RoutedEventArgs e)
|
private void CloseButton_Click(object sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
this.Close();
|
this.Close();
|
||||||
|
1
testpush daddypig.txt
Normal file
1
testpush daddypig.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
erik stinkt
|
Loading…
Reference in New Issue
Block a user