-
<UserControl ...
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:hc="xxx">
<hc:TagContainer>
<d:hc:TagContainer.Items> // syntax errors
<hc:Tag />
<hc:Tag />
<hc:Tag />
</d:hc:TagContainer.Items>
</hc:TagContainer>
</UserControl> Where |
Beta Was this translation helpful? Give feedback.
Answered by
lindexi
Dec 4, 2021
Replies: 3 comments
-
It works well in design time. You must use the HandyControl design version, see <Window x:Class="CarkugeajeKejoheele.MainWindow"
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:CarkugeajeKejoheele"
xmlns:hc="https://handyorg.github.io/handycontrol"
xmlns:hcDesignTimeControls="https://handyorg.github.io/handycontrol/design"
mc:Ignorable="d hcDesignTimeControls"
Title="MainWindow" Height="450" Width="800">
<Grid>
<hc:TagContainer>
<hcDesignTimeControls:TagContainer.Items>
<hc:Tag>
<hc:Tag.Content>
<TextBlock>123</TextBlock>
</hc:Tag.Content>
</hc:Tag>
<hc:Tag Content="2" />
<hc:Tag Content="3" />
</hcDesignTimeControls:TagContainer.Items>
</hc:TagContainer>
</Grid>
</Window> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
singhashish-wpf
-
How can you know this one: Where is the docs? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It works well in design time.
You must use the HandyControl design version, see