Missing BulletPanel |
Post Reply |
Author | |
cpede
Senior Member Joined: 13 August 2004 Location: Denmark Status: Offline Points: 666 |
Post Options
Thanks(0)
Posted: 23 March 2011 at 4:08am |
We are using Markup more and more. Converting "old" HTML formatting to markup. In this conversion we really miss a BulletPanel known from XAML.
-cpede
|
|
Product: Xtreme ToolkitPro (24.0.0)
Platform: Windows 10 (x64) Language: Visual Studio 2017 (C++) |
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
Hi,
Seems XAML from MS implementation have no idea what is BulletPanel...
System.Windows.Markup.XamlParseException: The tag 'BulletPanel' does not exist in XML namespace What it gives compare to StackPanel ? |
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
cpede
Senior Member Joined: 13 August 2004 Location: Denmark Status: Offline Points: 666 |
Post Options
Thanks(0)
|
Ok, sorry; i just made a quick google.
As the name implies, I want some lines of text with bullets in front. Like the <ol> and <ul> tags with the <li> lines in HTML.
Maybe it is not a part of XAML, but it should
cpede
|
|
Product: Xtreme ToolkitPro (24.0.0)
Platform: Windows 10 (x64) Language: Visual Studio 2017 (C++) |
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
Nope. XAML don't have special bullet panel, just use stackpanel
<Page xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'> <ScrollViewer> <StackPanel> <TextBlock>• Item1</TextBlock> <TextBlock>• Item2</TextBlock> </StackPanel> </ScrollViewer> </Page> |
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |