重新设计工作流设计器 - 更改工具箱的方向

时间:2012-03-12 21:31:43

标签: wpf c#-4.0 workflow-foundation-4

我正在重新托管Workflow设计器,但工具箱的xaml显示了与缩进垂直对齐的活动。我需要像在工具栏中一样水平托管我的自定义活动和一些基本活动。我尝试使用stackpanel作为容器但是徒劳无功。以下是代码段。

 <Border Grid.Column="0">
            <sapt:ToolboxControl>
                <sapt:ToolboxCategory CategoryName="" >
                    <sapt:ToolboxItemWrapper AssemblyName="{StaticResource AssemblyName}" >
                        <sapt:ToolboxItemWrapper.ToolName>
                            System.Activities.Statements.Sequence
                        </sapt:ToolboxItemWrapper.ToolName>
                       </sapt:ToolboxItemWrapper>
                    <sapt:ToolboxItementer code hereWrapper  AssemblyName="{StaticResource AssemblyName}">
                        <sapt:ToolboxItemWrapper.ToolName>
                            System.Activities.Statements.WriteLine
                        </sapt:ToolboxItemWrapper.ToolName>
             </sapt:ToolboxItemWrapper>
                </sapt:ToolboxCategory>
            </sapt:ToolboxControl>
        </Border>

0 个答案:

没有答案