﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - ClientUI - operation speed is very slow if we have a Page with an UXGridView and UXTreeView</title><link>http://www.intersoftsolutions.com/Community/ClientUI/operation-speed-is-very-slow-if-we-have-a-Page-with-an-UXGridView-and-UXTreeView/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>operation speed is very slow if we have a Page with an UXGridView and UXTreeView</title><link>http://www.intersoftsolutions.com/Community/ClientUI/operation-speed-is-very-slow-if-we-have-a-Page-with-an-UXGridView-and-UXTreeView/</link><pubDate>Wed, 16 Nov 2011 21:40:07 GMT</pubDate><dc:creator>yudi</dc:creator><category>uxgridview</category><category>UXTreeView</category><description>&lt;blockquote&gt;...So Is there a limit to how many objects you can export on one page?Please give me some advise...&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;I’m afraid there is no exact limit of objects that can be exported on one page. I’d love to suggest you to decrease the amount of UXGridView’s columns and UXTreeView’s items. Showing only the most important columns needed by user and showing the detail on demand. You might also try to use some techniques to improve performance such as load-on-demand, paging, row virtualization, using deferred view scrolling for the horizontal and vertical scroll, etc.&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;...We Set UXTreeView IsLoadOnDemand="True", LoadOnDemandMode="UseProcessedItem"&amp;nbsp; and AllowMoveItem="True";Set UXTreeViewItem AllowMoveItem="True";The Problem is that the item bulit on demand does not support drag...&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;I will have this report and discussed with the UXTreeView development team. I’ll get back to you at the soonest.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>operation speed is very slow if we have a Page with an UXGridView and UXTreeView</title><link>http://www.intersoftsolutions.com/Community/ClientUI/operation-speed-is-very-slow-if-we-have-a-Page-with-an-UXGridView-and-UXTreeView/</link><pubDate>Tue, 15 Nov 2011 04:11:26 GMT</pubDate><dc:creator>gavin</dc:creator><category>uxgridview</category><category>UXTreeView</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Question one:&lt;br /&gt;We are using different ClientUI5 Controls on one Page.In our example we have a Page with an UXGridView(page size is 20,has 25 columns), UXTreeView(has about 1000 items) and UXTabControl.The issue is that operation speed is very slow on this page, and it is taking a lot of time to select one item or to edit one item.This is a big problem about performance.&lt;br /&gt;1&amp;gt; It seems if the page only has the UXGridView or the UXTreeView, the operation speed is be fine.&lt;br /&gt;2&amp;gt; It seems if we reduce the number of UXTreeView's Items, the operation speed can be increased( performance improvement).&lt;br /&gt;3&amp;gt; It seems if we reduce the number of UXGridView's Columns, the operation speed can be increased( performance improvement).&lt;br /&gt;So Is there a limit to how many objects you can export on one page?Please give me some advise.&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;Intersoft:DockPanel Name="dockPanel12" FillChildMode="Custom"&amp;gt;
  &amp;lt;Intersoft:UXGridView Name="QingDanList"  AutoGenerateColumns="False"  Intersoft:DockPanel.IsFillElement="True"
                        ItemsSource="{Binding Items}" SelectedItem="{Binding SelectedItem,Mode=TwoWay}"
                        Margin="0,4,4,0" IsBusy="{Binding IsBusy, Mode=TwoWay}"
                        ColumnHeaderStyleSelector="{StaticResource ColumnHeaderStyleSelector}"
                        FrozenColumnCount="2" StatusBarVisibility="Visible"
                        QueryOperation="Server" CanUserPage="True" PageSize="20"
                        PageDescriptor="{Binding QueryDescriptor.PageDescriptor, Mode=TwoWay}"
                        SortDescriptors="{Binding QueryDescriptor.SortDescriptors, Mode=TwoWay}"
                        AllowDrop="True"
                        GroupFootersVisibility="Collapsed" GroupByBoxVisibility="Collapsed"
                        AutoEditOperation="{Binding AutoEditOperation}"
                        CanUserAddRows="{Binding CanUserAddRows}"
                        CanUserDeleteRows="{Binding CanUserDeleteRows}"
                        CanUserEditRows="{Binding CanUserEditRows}"
                        EditEnterKeyAction="{Binding EditEnterKeyAction}"
                        EditMouseGesture="{Binding EditMouseGesture}"
                        EnterKeyAction="{Binding EnterKeyAction}"
                        NewItem="{Binding NewItem, Mode=TwoWay}"
                        SelectedIndex="{Binding SelectedIndex, Mode=TwoWay}"
                        ValidateRowCommand="{Binding ValidateRowCommand}"
                        InsertRowCommand="{Binding InsertRowCommand}"
                        DeleteRowCommand="{Binding DeleteRowCommand}"
                        PrepareNewRowCommand="{Binding PrepareNewRowCommand}"
                        UpdateCellCommand="{Binding UpdateCellCommand}"
                        UpdateRowCommand="{Binding UpdateRowCommand}"
                        SaveChangesCommand="{Binding SaveChangesCommand}"
                        RejectRowCommand="{Binding RejectRowCommand}"
                        HasChanges="{Binding HasChanges}"&amp;gt;
    &amp;lt;Intersoft:UXGridView.ResourceOverride&amp;gt;
      &amp;lt;Intersoft:UXGridViewResource BusyText="加载中" ContextMenu_CopyRow="复制行"/&amp;gt;
    &amp;lt;/Intersoft:UXGridView.ResourceOverride&amp;gt;
    &amp;lt;Intersoft:UXGridView.Columns&amp;gt;
      &amp;lt;Intersoft:UXGridViewCheckBoxColumn Binding="{Binding bzj}" Header="标准件" IsReadOnly="True"&amp;gt;  &amp;lt;/Intersoft:UXGridViewCheckBoxColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding qdxh}" Header="序号" IsReadOnly="True" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding dyzy}" Header="专业" IsReadOnly="True" &amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding bhlb}" Header="类别" IsReadOnly="True" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding zhbh}" Header="项目编号" &amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding tzbz}" Header="换" IsReadOnly="True" CellHorizontalAlignment="Center"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding qdmc}" Header="项目名称"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding dw}" Header="单位" CellHorizontalAlignment="Center"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding zhxs}" Header="工程量"  CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding zcfdj, StringFormat=n}" Header="综合单价" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding zgjdj, StringFormat=n}" Header="暂估价" IsReadOnly="True" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding zcfhj, StringFormat=n}" Header="综合报价"  IsReadOnly="True" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding jsjs}" Header="取费基数" IsReadOnly="True"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding glffl, StringFormat=p}" Header="管理费费率" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding lrfl, StringFormat=p}" Header="利率费率" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding rgdj, StringFormat=n}" Header="人工单价" IsReadOnly="True" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding cldj, StringFormat=n}" Header="材料单价" IsReadOnly="True" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding jxdj, StringFormat=n}" Header="机械单价" IsReadOnly="True" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewCheckBoxColumn Binding="{Binding sptbz}" Header="商品" IsReadOnly="True"&amp;gt;  &amp;lt;/Intersoft:UXGridViewCheckBoxColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewCheckBoxColumn Binding="{Binding bengsong}" Header="泵送" IsReadOnly="True"&amp;gt;  &amp;lt;/Intersoft:UXGridViewCheckBoxColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding rgxs, StringFormat=\{0:N3\}}" Header="人工系数" IsReadOnly="True" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding clxs, StringFormat=\{0:N3\}}" Header="材料系数" IsReadOnly="True" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding jxxs, StringFormat=\{0:N3\}}" Header="机械系数" IsReadOnly="True" CellHorizontalAlignment="Right"&amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding bz}" Header="备注" &amp;gt;  &amp;lt;/Intersoft:UXGridViewTextColumn&amp;gt;
      &amp;lt;Intersoft:UXGridViewCheckBoxColumn Binding="{Binding iszb}" Header="招标" IsReadOnly="True"&amp;gt;  &amp;lt;/Intersoft:UXGridViewCheckBoxColumn&amp;gt;
    &amp;lt;/Intersoft:UXGridView.Columns&amp;gt;
  &amp;lt;/Intersoft:UXGridView&amp;gt;
  &amp;lt;Intersoft:UXResizablePane x:Name="SampleControl2" Header="辅助" Intersoft:DockPanel.Dock="Bottom" ResizeDock="Top"
                                        BorderThickness="1,1,0,0" Height="250"    MinHeight="32" MaxHeight="400"
                HeaderImage="/Images/Office/PublishPlanHS.png" CollapseAction="KeepContentVisible"&amp;gt;
    &amp;lt;Intersoft:UXResizablePane.HeaderBackground&amp;gt;
      &amp;lt;LinearGradientBrush EndPoint="0.5,1" MappingMode="RelativeToBoundingBox" StartPoint="0.5,0"&amp;gt;
        &amp;lt;GradientStop Color="White"/&amp;gt;
        &amp;lt;GradientStop Color="#FFA0E1FD" Offset="1"/&amp;gt;
      &amp;lt;/LinearGradientBrush&amp;gt;
    &amp;lt;/Intersoft:UXResizablePane.HeaderBackground&amp;gt;
    &amp;lt;Intersoft:UXTabControl   Name="uXTabControl2" Margin="2" CornerRadius="2" SelectedIndex="{Binding SelectedTabIndex,Mode=TwoWay}"&amp;gt;
      &amp;lt;Intersoft:UXTabItem Header="备注"  Background="{StaticResource BlueBackGroud}" CornerRadius="2" HeaderDisplayMode="Content"  Margin="0,0,3,0" &amp;gt;

      &amp;lt;/Intersoft:UXTabItem&amp;gt;
      &amp;lt;Intersoft:UXTabItem Header="模板钢筋" Background="{StaticResource BlueBackGroud}" CornerRadius="2" HeaderDisplayMode="Content" Margin="0,0,3,0"&amp;gt;

      &amp;lt;/Intersoft:UXTabItem&amp;gt;
      &amp;lt;Intersoft:UXTabItem Header="换配比" Background="{StaticResource BlueBackGroud}" CornerRadius="2" HeaderDisplayMode="Content" Margin="0,0,3,0"&amp;gt;
      &amp;lt;/Intersoft:UXTabItem&amp;gt;
      &amp;lt;Intersoft:UXTabItem Header="单价组成" Background="{StaticResource BlueBackGroud}" CornerRadius="2" HeaderDisplayMode="Content" Margin="0,0,3,0"&amp;gt;
      &amp;lt;/Intersoft:UXTabItem&amp;gt;
      &amp;lt;Intersoft:UXTabItem Header="工程量计算式" Background="{StaticResource BlueBackGroud}" CornerRadius="2" HeaderDisplayMode="Content" Margin="0,0,3,0"&amp;gt;
      &amp;lt;/Intersoft:UXTabItem&amp;gt;
      &amp;lt;Intersoft:UXTabItem Header="清单特征" Visibility="{Binding IsQingDan}" Background="{StaticResource BlueBackGroud}" CornerRadius="2" HeaderDisplayMode="Content"  Margin="0,0,3,0" &amp;gt;
        &amp;lt;Grid&amp;gt;
          &amp;lt;Grid.RowDefinitions&amp;gt;
            &amp;lt;RowDefinition Height="30"/&amp;gt;
            &amp;lt;RowDefinition Height="0.5*"/&amp;gt;
            &amp;lt;RowDefinition Height="0.5*"/&amp;gt;
          &amp;lt;/Grid.RowDefinitions&amp;gt;
          &amp;lt;Grid.ColumnDefinitions&amp;gt;
            &amp;lt;ColumnDefinition Width="60"/&amp;gt;
            &amp;lt;ColumnDefinition Width="0.3*"/&amp;gt;
            &amp;lt;ColumnDefinition Width="60"/&amp;gt;
            &amp;lt;ColumnDefinition Width="0.7*"/&amp;gt;
          &amp;lt;/Grid.ColumnDefinitions&amp;gt;
          &amp;lt;Intersoft:FieldLabel Header="清单编号：" Margin="0" HorizontalHeaderAlignment="Stretch" /&amp;gt;
          &amp;lt;Intersoft:UXTextBox Text="{Binding SelectedItem.zhbh}" TextWrapping="Wrap" Grid.Column="1" HorizontalContentAlignment="Left" VerticalContentAlignment="Stretch" VerticalAlignment="Center" Margin="2"/&amp;gt;
          &amp;lt;Intersoft:FieldLabel Header="清单名称：" Margin="0" Grid.Column="2"/&amp;gt;
          &amp;lt;Intersoft:UXTextBox Text="{Binding SelectedItem.qdmc}" TextWrapping="Wrap" Grid.Column="3" HorizontalContentAlignment="Left" VerticalContentAlignment="Stretch" VerticalAlignment="Center" Margin="2"/&amp;gt;

          &amp;lt;Intersoft:FieldLabel Header="项目特征：" Margin="0" Grid.Row="1" d:LayoutOverrides="Height"/&amp;gt;
          &amp;lt;Intersoft:UXScrollViewer VerticalScrollBarVisibility="Auto" Margin="0" Grid.Row="1" Grid.Column="1"&amp;gt;
            &amp;lt;Intersoft:UXTextBox Text="{Binding SelectedItem.qdtz}" BorderThickness="2"
              VerticalScrollBarVisibility="Disabled" TextWrapping="Wrap" AcceptsReturn="True" HorizontalContentAlignment="Left" VerticalContentAlignment="Top" Margin="2"/&amp;gt;
          &amp;lt;/Intersoft:UXScrollViewer&amp;gt;
          &amp;lt;Intersoft:FieldLabel Header="计算规则：" Content="{Binding SelectedItem.qdjsgz}" Margin="0" Grid.Row="2"/&amp;gt;

          &amp;lt;Intersoft:UXScrollViewer VerticalScrollBarVisibility="Auto" Margin="0" Grid.Row="2" Grid.Column="1"&amp;gt;
            &amp;lt;Intersoft:UXTextBox Text="{Binding SelectedItem.qdjsgz}" BorderThickness="2"
              VerticalScrollBarVisibility="Disabled" TextWrapping="Wrap" AcceptsReturn="True" HorizontalContentAlignment="Left" VerticalContentAlignment="Top" Margin="2"/&amp;gt;
          &amp;lt;/Intersoft:UXScrollViewer&amp;gt;
          &amp;lt;Grid Grid.Column="2" Margin="2" Grid.Row="1" Grid.ColumnSpan="2" Grid.RowSpan="2"&amp;gt;
            &amp;lt;Grid.RowDefinitions&amp;gt;
              &amp;lt;RowDefinition Height="*"/&amp;gt;
              &amp;lt;RowDefinition Height="40"/&amp;gt;
            &amp;lt;/Grid.RowDefinitions&amp;gt;
            &amp;lt;Intersoft:UXGridView  x:Name="QingDanFeasureList"  AutoGenerateColumns="False"   Margin="0"
                                   FrozenColumnCount="2" StatusBarVisibility="Collapsed" QueryOperation="Server"
                                   CanUserPage="False"  AutoEditOperation="True" HorizontalAlignment="Stretch"
                                   VerticalAlignment="Stretch"&amp;gt;
              &amp;lt;!--StatusBarVisibility="Collapsed"  EnableRowVirtualization="True"--&amp;gt;
              &amp;lt;Intersoft:UXGridView.ResourceOverride&amp;gt;
                &amp;lt;Intersoft:UXGridViewResource BusyText="加载中" ContextMenu_CopyRow="复制行"/&amp;gt;
              &amp;lt;/Intersoft:UXGridView.ResourceOverride&amp;gt;
              &amp;lt;Intersoft:UXGridView.Columns&amp;gt;
                &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding SelectedItem.qdtz}"  Header="项目特征" /&amp;gt;
                &amp;lt;Intersoft:UXGridViewTextColumn Binding="{Binding SelectedItem.qdtz}" Header="特征描述" /&amp;gt;
                &amp;lt;Intersoft:UXGridViewCheckBoxColumn Binding="{Binding SelectedItem.iszb}" Header="显示" /&amp;gt;
                &amp;lt;Intersoft:UXGridViewCheckBoxColumn Binding="{Binding SelectedItem.iszb}" Header="换行" /&amp;gt;
              &amp;lt;/Intersoft:UXGridView.Columns&amp;gt;
            &amp;lt;/Intersoft:UXGridView&amp;gt;
            &amp;lt;StackPanel Margin="0,5,0,0" Grid.Row="1" Orientation="Horizontal"&amp;gt;
              &amp;lt;RadioButton Content="编辑清单特征" HorizontalAlignment="Center" VerticalAlignment="Center" IsChecked="True"  /&amp;gt;
              &amp;lt;RadioButton Content="编辑工作内容" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10,0"  /&amp;gt;
              &amp;lt;Button Content="取子目名称" HorizontalAlignment="Left" Height="25" Margin="0" Width="62"/&amp;gt;
              &amp;lt;Button Content="清单特征管理" HorizontalAlignment="Right" Height="25" Margin="10,0,0,0" Width="80"/&amp;gt;
            &amp;lt;/StackPanel&amp;gt;
          &amp;lt;/Grid&amp;gt;
        &amp;lt;/Grid&amp;gt;
      &amp;lt;/Intersoft:UXTabItem&amp;gt;
      &amp;lt;Intersoft:UXTabItem Header="清单指引" Background="{StaticResource BlueBackGroud}" CornerRadius="2" HeaderDisplayMode="Content" Margin="0,0,3,0"&amp;gt;
      &amp;lt;/Intersoft:UXTabItem&amp;gt;
      &amp;lt;Intersoft:UXTabItem Header="超高费" Background="{StaticResource BlueBackGroud}" CornerRadius="2" HeaderDisplayMode="Content" Margin="0,0,3,0"&amp;gt;
      &amp;lt;/Intersoft:UXTabItem&amp;gt;
    &amp;lt;/Intersoft:UXTabControl&amp;gt;
  &amp;lt;/Intersoft:UXResizablePane&amp;gt;
&amp;lt;/Intersoft:DockPanel&amp;gt;
&amp;lt;/Grid&amp;gt;
&amp;lt;Intersoft:UXResizablePane Intersoft:DockPanel.Dock="Left" HeaderImage="/Images/Info.png"
                           ResizeDock="Right" Margin="2,2,0,2" CollapseAction="KeepContentVisible"
                           Visibility="{Binding OutlookMenuVisible}" EnableFadingAnimation="False"
                           MinWidth="38" Width="250" MaxWidth="400"  x:Name="LeftPane" Header="清单"&amp;gt;
  &amp;lt;Intersoft:UXResizablePane.HeaderBackground&amp;gt;
    &amp;lt;LinearGradientBrush EndPoint="0.5,1" MappingMode="RelativeToBoundingBox" StartPoint="0.5,0"&amp;gt;
      &amp;lt;GradientStop Color="White"/&amp;gt;
      &amp;lt;GradientStop Color="#FFA0E1FD" Offset="1"/&amp;gt;
    &amp;lt;/LinearGradientBrush&amp;gt;
  &amp;lt;/Intersoft:UXResizablePane.HeaderBackground&amp;gt;
  &amp;lt;Intersoft:UXTabControl   Name="uXTabControl3" Margin="2" CornerRadius="2" SelectedIndex="{Binding SelectedLeftTabIndex,Mode=TwoWay}" TabStripPlacement="Bottom" &amp;gt;

    &amp;lt;Intersoft:UXTabItem Header="定额" Background="{StaticResource BlueBackGroud}" CornerRadius="2" HeaderDisplayMode="ContentAndImage"  Margin="0,0,3,0" HeaderImage="/Images/ClientUI_Silverlight.png" &amp;gt;

    &amp;lt;/Intersoft:UXTabItem&amp;gt;
    &amp;lt;Intersoft:UXTabItem Header="清单" Background="{StaticResource BlueBackGroud}" CornerRadius="2" HeaderDisplayMode="ContentAndImage" Margin="0,0,3,0" HeaderImage="/Images/ClientUI_Silverlight.png"&amp;gt;


      &amp;lt;Grid&amp;gt;
        &amp;lt;Grid.RowDefinitions&amp;gt;
          &amp;lt;RowDefinition Height="25"/&amp;gt;
          &amp;lt;RowDefinition Height="*"/&amp;gt;
        &amp;lt;/Grid.RowDefinitions&amp;gt;
        &amp;lt;Grid.ColumnDefinitions&amp;gt;
          &amp;lt;ColumnDefinition Width="*"/&amp;gt;
          &amp;lt;ColumnDefinition Width="80"/&amp;gt;
        &amp;lt;/Grid.ColumnDefinitions&amp;gt;
        &amp;lt;Button Content="查询" Name="SearchButton" Grid.Column="1" Height="19" Margin="0,2" VerticalAlignment="Top"/&amp;gt;
        &amp;lt;Intersoft:UXTextBox Name="SearchText"    Grid.Column="0" Margin="0,2"  /&amp;gt;
        &amp;lt;Intersoft:UXScrollViewer x:Name="TreeScrollView" Grid.Row="1" Grid.ColumnSpan="2" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto" Margin="0,2"&amp;gt;
          &amp;lt;Intersoft:UXTreeView x:Name="SampleControl" ItemsSource="{Binding TreeViewItems}"
                                    CollectionMemberPath="Nodes" DisplayMemberPath="Name" SelectedValuePath="Name"
                                    SelectedItem="{Binding SelectedTViewItem, Mode=TwoWay}"
                                            
                                    Background="{x:Null}" AllowMoveItem="True" DragMode="Copy" DragDropTooltipText=""
                                    BorderThickness="0"&amp;gt;
            &amp;lt;Intersoft:UXTreeView.ItemContainerStyle&amp;gt;
              &amp;lt;Style TargetType="Intersoft:UXTreeViewItem"&amp;gt;
                &amp;lt;Setter Property="DisplayMemberPath" Value="Name" /&amp;gt;
                &amp;lt;Setter Property="CollectionMemberPath" Value="Nodes" /&amp;gt;
                &amp;lt;Setter Property="DisplayMode" Value="Content" /&amp;gt;
                &amp;lt;Setter Property="AllowMoveItem" Value="True"/&amp;gt;
                &amp;lt;Setter Property="DragMode" Value="Copy"/&amp;gt;
                &amp;lt;Setter Property="DragDropTooltipText" Value=""/&amp;gt;
              &amp;lt;/Style&amp;gt;
            &amp;lt;/Intersoft:UXTreeView.ItemContainerStyle&amp;gt;
          &amp;lt;/Intersoft:UXTreeView&amp;gt;
        &amp;lt;/Intersoft:UXScrollViewer&amp;gt;

      &amp;lt;/Grid&amp;gt;
    &amp;lt;/Intersoft:UXTabItem&amp;gt;
  &amp;lt;/Intersoft:UXTabControl&amp;gt;
&amp;lt;/Intersoft:UXResizablePane&amp;gt;
&amp;lt;/Intersoft:DockPanel&amp;gt;&lt;/pre&gt;

&lt;p&gt;&lt;span style="background-color: #fffce1; font-family: courier new"&gt;Question Two:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;We Set UXTreeView IsLoadOnDemand="True", LoadOnDemandMode="UseProcessedItem"  and AllowMoveItem="True";Set UXTreeViewItem AllowMoveItem="True";The Problem is that the item bulit on demand &lt;span space="" rightzone="0|9" leftzone="0|9"&gt;does not support&lt;/span&gt;&lt;span space="0| " rightzone="9|6" leftzone="9|6"&gt; drag.If UXTreeView's IsLoadOnDemand="False", the item &lt;span space="" rightzone="0|9" leftzone="0|9"&gt;support&lt;/span&gt;&lt;span space="0| " rightzone="9|6" leftzone="9|6"&gt; drag.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;Intersoft:UXTreeView x:Name="SampleControl" ItemsSource="{Binding TreeViewItems}"
                                            CollectionMemberPath="Nodes" DisplayMemberPath="Name" SelectedValuePath="Name"
                                            SelectedItem="{Binding SelectedTViewItem, Mode=TwoWay}"
                                            IsLoadOnDemand="True" BusyLatency="0.002" LoadOnDemandMode="UseProcessedItem"
                                            ExpandedItem="{Binding ExpandedTViewItem, Mode=TwoWay}"
                                            ProcessedItem="{Binding ProcessedTViewItem, Mode=TwoWay}"
                                            Background="{x:Null}" AllowMoveItem="True" DragMode="Copy" DragDropTooltipText=""
                                            BorderThickness="0"&amp;gt;
  &amp;lt;Intersoft:UXTreeView.ItemContainerStyle&amp;gt;
    &amp;lt;Style TargetType="Intersoft:UXTreeViewItem"&amp;gt;
      &amp;lt;Setter Property="DisplayMemberPath" Value="Name" /&amp;gt;
      &amp;lt;Setter Property="CollectionMemberPath" Value="Nodes" /&amp;gt;
      &amp;lt;Setter Property="DisplayMode" Value="Content" /&amp;gt;
      &amp;lt;Setter Property="AllowMoveItem" Value="True"/&amp;gt;
      &amp;lt;Setter Property="DragMode" Value="Copy"/&amp;gt;
      &amp;lt;Setter Property="DragDropTooltipText" Value=""/&amp;gt;
    &amp;lt;/Style&amp;gt;
  &amp;lt;/Intersoft:UXTreeView.ItemContainerStyle&amp;gt;
&amp;lt;/Intersoft:UXTreeView&amp;gt;&lt;/pre&gt;&lt;span style="background-color: #fffce1; font-family: courier new"&gt;Thanks for any enlightenment in advance.&lt;/span&gt; 
</description></item></channel></rss>