Prince J
Packages issue
- 2 concurrent packages on sql was a mistake on my part in the setup i instead installed microsoft instead of system
- configuration package was recommended i'd use for the project that includes 1 class library and 2 wpf's
- Gmap same answer as above
45 replies
Issue with WPF
For point 3 the reason i utilized label is due to the fact i wanted to make my background beige and visible which is i was adviced to do beforehand. My logic was that i first decide on the background and then the grid as usually in my coding backgrounds are usually decided at the first line of code
19 replies
Issue with WPF
Next up the whole code snippit is this:
<Grid>
<Label Background="Beige" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Margin="0,10,0,597">
<Grid Width="756" Height="173">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="auto"/>
</Grid.ColumnDefinitions>
<Image Grid.Column="0" Source="images/logo.png" Margin="0,0,99,10"/>
<TextBlock Grid.Column="1" Text="Red Jordy" FontSize="36" VerticalAlignment="Center" Margin="0,0,200,0" FontFamily="Bradley Hand ITC" TextAlignment="Center"/>
<Button Grid.Column="1" Content="Login" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,0,10,0" Width="57" Height="30"/>
</Grid>
</Label>
19 replies