Lexaro
Lexaro
CC#
Created by jakeam on 2/2/2023 in #help
❔ Why does this code give the CS8604 warning?
ok
21 replies
CC#
Created by jakeam on 2/2/2023 in #help
❔ Why does this code give the CS8604 warning?
I help people who have problems coding
21 replies
CC#
Created by jakeam on 2/2/2023 in #help
❔ Why does this code give the CS8604 warning?
?????
21 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
Hm
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
not with Windows Presentation Foundation
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
then maybe start with Windows Forms
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
I would advise you to learn C# first before you start a big project
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
👍
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
yea
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
Look at the beginning of your code
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
A namespace in C# is a way of organizing and grouping related classes, interfaces, and other types in a logical manner. Namespaces help to avoid naming conflicts between types in different parts of an application and also help to structure the code in a hierarchical and meaningful way.
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
and want to do something in C#?
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
u dont know what a namespace is?
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
??????
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
add the name "Card" to ur namespace
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
<Window x:Class="TalgrafNaytto.SplashScreen"
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:materialDesign="https://materialdesignxaml.net/winfx/xaml/themes"
mc:Ignorable="d"
Title="SplashScreen" Height="450" Width="750"
WindowStyle="None"
WindowStartupLocation="CenterScreen"
AllowsTransparency="True"
Background="{x:Null}">



<materialDesign:Card UniformCornerRadius="15" Background="{DynamicResourse MaterialDesignPaper}"
materialDesign:ShadowAssist.ShadowDepth="Depth4" Margin="25">

<Grid>

<Grid.ColumnDefinitions>

<ColumnDefinition Width="350"></ColumnDefinition>
<ColumnDefinition Width="400"></ColumnDefinition>
</Grid.ColumnDefinitions>

<StackPanel Grid.Row="0" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="50
0 0 0">

<WrapPanel>
<Image Source="Assets/talgraflogo.png" HorizontalAlignment="Left" Height="50"
Width="50"></Image>
<TextBlock Text="Talgraf" FontSize="28" FontWeight="Bold"
HorizontalAlignment="Left" VerticalAlignment="Center" Margin="15 0 0 0"></TextBlock>
</WrapPanel>


</StackPanel>

</Grid>

</materialDesign:Card>
</Window>
<Window x:Class="TalgrafNaytto.SplashScreen"
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:materialDesign="https://materialdesignxaml.net/winfx/xaml/themes"
mc:Ignorable="d"
Title="SplashScreen" Height="450" Width="750"
WindowStyle="None"
WindowStartupLocation="CenterScreen"
AllowsTransparency="True"
Background="{x:Null}">



<materialDesign:Card UniformCornerRadius="15" Background="{DynamicResourse MaterialDesignPaper}"
materialDesign:ShadowAssist.ShadowDepth="Depth4" Margin="25">

<Grid>

<Grid.ColumnDefinitions>

<ColumnDefinition Width="350"></ColumnDefinition>
<ColumnDefinition Width="400"></ColumnDefinition>
</Grid.ColumnDefinitions>

<StackPanel Grid.Row="0" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="50
0 0 0">

<WrapPanel>
<Image Source="Assets/talgraflogo.png" HorizontalAlignment="Left" Height="50"
Width="50"></Image>
<TextBlock Text="Talgraf" FontSize="28" FontWeight="Bold"
HorizontalAlignment="Left" VerticalAlignment="Center" Margin="15 0 0 0"></TextBlock>
</WrapPanel>


</StackPanel>

</Grid>

</materialDesign:Card>
</Window>
@Ne0
46 replies
CC#
Created by n305 on 2/2/2023 in #help
✅ materialDesign:Card
i fix it for you
46 replies
CC#
Created by jakeam on 2/2/2023 in #help
❔ Why does this code give the CS8604 warning?
If you did if (myString != null) or if (myString is not null) then it would pick up on it
21 replies
CC#
Created by jakeam on 2/2/2023 in #help
❔ Why does this code give the CS8604 warning?
i'm getting more and more convinced you're a bot
21 replies
CC#
Created by jakeam on 2/2/2023 in #help
❔ Why does this code give the CS8604 warning?
Nullable flow analysis is not smart enough to figure that out when the result is stored in an intermediate variable.
21 replies