﻿<?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 - Silverlight Drag &amp; Drop with different zoom levels</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Silverlight-Drag--Drop-with-different-zoom-levels/</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>Silverlight Drag &amp; Drop with different zoom levels</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Silverlight-Drag--Drop-with-different-zoom-levels/</link><pubDate>Sun, 27 Nov 2011 22:09:47 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;Thank you very much for the valuable feedback.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;I will have this problem forwarded to ClientUI development team and try to ensure that the reported problem has been addressed in the release version of Intersoft WebUI Studio 2011 R2.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;Should I have any news regarding this thread, I will let you know.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;&lt;strong&gt;Edited on December 26, 2011 11:03 PM&lt;br /&gt;Reason: add/update work item information&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;This zoom level problem is submitted to ClientUI development team under work item #1104.&lt;br /&gt;I will keep you updated with any news I heard from the team regarding work item #1104.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Silverlight Drag &amp; Drop with different zoom levels</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Silverlight-Drag--Drop-with-different-zoom-levels/</link><pubDate>Wed, 23 Nov 2011 14:11:09 GMT</pubDate><dc:creator>terrell.jm@gmail.com</dc:creator><description>&lt;p&gt;Hi, this may be related to a similar post "&lt;a class="contentlink" href="http://www.intersoftpt.com/Community/ClientUI/ComboBox-dropdown-positioning-under-Silverlight/" style="font-family: 'segoe ui', arial, verdana, tahoma; color: rgb(22, 95, 167); text-decoration: none; font-size: 14px; font-weight: bold; text-align: left; background-color: rgb(255, 255, 255); "&gt;ComboBox dropdown positioning under Silverlight&lt;/a&gt;". I have attached a simple example which works perfectly under Silverlight when the zoom level is set to 100%. However when I select another level, say 120%, the drag/drop operations become erratic or stop working. Specifically I can no longer drag from the left tree and drop on the right tree. I am running Windows 7 on a 120DPI monitor.  Thanks, Jonathan&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;&amp;lt;UserControl x:Class="SilverlightApplication14.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls"
 xmlns:Intersoft="clr-namespace:Intersoft.Client.UI.Controls.Interactivity;assembly=Intersoft.Client.UI.Controls.Interactivity"&amp;gt;
 &amp;lt;UserControl.Resources&amp;gt;
 &amp;lt;ItemsPanelTemplate x:Key="ItemsPanelTemplate1"&amp;gt;
 &amp;lt;Intersoft:UXStackPanel Orientation="Vertical" AllowMoveItem="True" AllowDropItem="True" AllowReorderItem="True" AllowRemoveItem="True" /&amp;gt;
 &amp;lt;/ItemsPanelTemplate&amp;gt;
 &amp;lt;ItemsPanelTemplate x:Key="ItemsPanelTemplate2"&amp;gt;
 &amp;lt;Intersoft:UXStackPanel Orientation="Vertical" AllowMoveItem="True" AllowDropItem="True" AllowReorderItem="True" /&amp;gt;
 &amp;lt;/ItemsPanelTemplate&amp;gt;
 &amp;lt;/UserControl.Resources&amp;gt;
 &amp;lt;Grid&amp;gt;
 &amp;lt;Grid.ColumnDefinitions&amp;gt;
 &amp;lt;ColumnDefinition Width="*" /&amp;gt;
 &amp;lt;ColumnDefinition Width="*" /&amp;gt;
 &amp;lt;/Grid.ColumnDefinitions&amp;gt;
 &amp;lt;Controls:TreeView x:Name="t1" Grid.Column="0" ItemsPanel="{StaticResource ItemsPanelTemplate1}"&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 1" /&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 2" ItemsPanel="{StaticResource ItemsPanelTemplate1}"&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 2.1" /&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 2.2" /&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 2.3" /&amp;gt;
 &amp;lt;/Controls:TreeViewItem&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 3" /&amp;gt;
 &amp;lt;/Controls:TreeView&amp;gt;
 &amp;lt;Controls:TreeView x:Name="t2" Grid.Column="1" ItemsPanel="{StaticResource ItemsPanelTemplate2}"&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 1" /&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 2" ItemsPanel="{StaticResource ItemsPanelTemplate2}"&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 2.1" /&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 2.2" /&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 2.3" /&amp;gt;
 &amp;lt;/Controls:TreeViewItem&amp;gt;
 &amp;lt;Controls:TreeViewItem Header="Item 3" /&amp;gt;
 &amp;lt;/Controls:TreeView&amp;gt;
 &amp;lt;/Grid&amp;gt;
&amp;lt;/UserControl&amp;gt;
&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p /&gt;</description></item></channel></rss>