Fischi
Fischi
CC#
Created by Fischi on 3/7/2023 in #help
✅ WPF Label does not print out the first underline _
Oh okay i see. Yeah i am new to WPF so i always used label to check my output since i dont have a console which i was used to. Thanks for you answer
9 replies
CC#
Created by Fischi on 3/7/2023 in #help
✅ WPF Label does not print out the first underline _
thats my wpf
9 replies
CC#
Created by Fischi on 3/7/2023 in #help
✅ WPF Label does not print out the first underline _
<Window x:Class="DMS.Login"
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:DMS"
mc:Ignorable="d"
Title="Login" Height="200" Width="280">
<Grid>
<Button Content="Login" HorizontalAlignment="Left" Margin="94,94,0,0" VerticalAlignment="Top" Click="btn_Login"/>
<TextBox x:Name="txtbox_login_username" HorizontalAlignment="Left" Margin="107,14,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="120"/>
<Label Content="Username:" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top"/>
<TextBox x:Name="txtbox_login_password" HorizontalAlignment="Left" Margin="107,47,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="120"/>
<Label Content="Password:" HorizontalAlignment="Left" Margin="10,41,0,0" VerticalAlignment="Top"/>
<Label x:Name="TestLabel1" Content="" HorizontalAlignment="Center" Margin="0,130,0,0" VerticalAlignment="Top"/>
</Grid>
</Window>
<Window x:Class="DMS.Login"
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:DMS"
mc:Ignorable="d"
Title="Login" Height="200" Width="280">
<Grid>
<Button Content="Login" HorizontalAlignment="Left" Margin="94,94,0,0" VerticalAlignment="Top" Click="btn_Login"/>
<TextBox x:Name="txtbox_login_username" HorizontalAlignment="Left" Margin="107,14,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="120"/>
<Label Content="Username:" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top"/>
<TextBox x:Name="txtbox_login_password" HorizontalAlignment="Left" Margin="107,47,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="120"/>
<Label Content="Password:" HorizontalAlignment="Left" Margin="10,41,0,0" VerticalAlignment="Top"/>
<Label x:Name="TestLabel1" Content="" HorizontalAlignment="Center" Margin="0,130,0,0" VerticalAlignment="Top"/>
</Grid>
</Window>
9 replies
CC#
Created by Fischi on 3/6/2023 in #help
C# WPF Login Oracle Database
Thanks for the help guys ❤️
17 replies
CC#
Created by Fischi on 3/6/2023 in #help
C# WPF Login Oracle Database
The idea behind it is a "easy" document management system. My goal is to store the Data (such as .docx .txt ...) in a Volume on a Windows Server. The Metadata (such as DocumentID, Description, Path ...) will get stored in the Oracle Database (Oracle 19c). The Volume and Database are both installed on a VM (Windows Server 2022). The "project" will not be used in real world its just fictional for me to improve programming and get some start with C# and WPF. Also I use Oracle SQL bc i want to get a better understanding of Oracle in general. @Deno thanks for the answer i will from now on put the connection string in the app.config. I am pretty new so EF Core or Dapper doesnt tell me anything at the moment. @Angius i wont use any hashing bc its not a productive software. Also ADO doesnt tell me anything either, thanks for the reply.
17 replies