Pokud použiji: xmlns:p="clr-namespace:HA5Logic.Properties" HA5Logic je rootNamespace. Pak se podtrhne už tento řádek s tím že HA5Logic.Properties není součástí assembly. Mohu tam napsat HA5Logic nebo právě HA5Logic.My pak v definování Context="x:Static p:Resources.TestString" se mi podrthne p:Resources -> Type p:Resources was not found. úplný detail projektu: Assembly i rootNamesace : HA5Logic formulář:
<Window x:Class="frmRooms"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:p="clr-namespace:HA5Logic"
Title="Rooms" Height="426" Width="603">
<Grid>
<Label Content="{x:Static p:Resources.TestString}" Height="28" HorizontalAlignment="Left" Margin="122,148,0,0" Name="Label1" VerticalAlignment="Top" />
</Grid>
</Window>
V resources je jen jeden string a to TestString.
|