Telerik Forums
UI for WPF Forum
16 answers
539 views
Hello!
I know how to hide pin button, close button
but I need to hide the context menu button.
can you help me?

Thank you!
RoxanaC
Miroslav Nedyalkov
Telerik team
 answered on 13 Aug 2010
2 answers
160 views
Hi,

I have a custom ExtendedGauge control derived from RadGauge, which adds a DynamicDictionary dep.property. Server-side sends some data in DynamicDictionary format, and if you databind a DynamicDictionary object to the DynamicDictionary property of ExtendedGauge, it creates a RadialGauge. We added DynamicDictionary property to support MVVM in our pages.

 

private static void DynamicDictionaryChangedCallback(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)

 

{

 

    ExtendedGauge extendedGauge = dependencyObject as ExtendedGauge;

 

 

    if (e.NewValue is DynamicDictionary)

 

    {

        extendedGauge.LoadDynamicDictionary();

        extendedGauge.RegisterDynamicDictionaryDataChangedEvent();

    }

}

when DynamicDictionary property changes LoadDynamicDictionary method is called, which parses DynamicDictionary values and creates a RadialGauge.

 

 

private void LoadDynamicDictionary()

 

{

 

    try

 

    {

        InitWithDefaults();

 

        if (this.DynamicDictionary != null)

 

        {

 

            // parse gauge parameters from the DynamicDictionary

 

            ParseGaugeParams();

        }

 

        // create a new gauge

 

 

        this.Content = CreateRadialGauge();

 

    }

 

    catch { } // ignore exception

 

}

CreateRadialGauge method is listed below:

 

 

private RadialGauge CreateRadialGauge()

 

{

 

    // Create Needle

 

 

 

 

 

    Needle needle = new Needle();

 

    needle.Name =

"needle";

 

    needle.Foreground =

new SolidColorBrush(Colors.Yellow);

 

    needle.Background =

new SolidColorBrush(Colors.Yellow);

 

    needle.IsAnimated =

true;

 

    needle.Duration =

new Duration(TimeSpan.FromSeconds(2));

 

    needle.Value =

this.value;

 

 


    // Create RadialScale

 

 

 

 

 

    RadialScale radialScale = new RadialScale();

 

    radialScale.Min =

this.minValue;

 

    radialScale.Max =

this.maxValue;

 

    radialScale.Indicators.Add(needle);

 

    int sliceCount = this.sliceColors.Count;

 

 

    double sliceLength = (this.maxValue - this.minValue) / sliceCount;

 

 

    
    this
.sliceColors.ToList().ForEach(slicePair =>

 

    {

        radialScale.Ranges.Add(

new RadialRange

 

 

 

 

        {

            Min = slicePair.Key * sliceLength,

            Max = (slicePair.Key + 1) * sliceLength,

            StartWidth = 0.05,

            EndWidth = 0.05,

            Background =

new SolidColorBrush(slicePair.Value)

 

        });

    });

 

    
    // Create RadialGauge

 

 

 

 

 

    RadialGauge radialGauge = new RadialGauge();

 

    radialGauge.Items.Add(radialScale);

 

    return radialGauge;

 

}

When I created the RadialGauge and assign it to the content property of the ExtendedGauge (ContentControl), I ran into an infinite loop. Is this a bug in RadGauge or am i doing something wrong?

Thanks,

Erkan

[2010-08-03 10:23:47,802] [ERROR] [10] [88] - System.InvalidOperationException: UIElement.Measure(availableSize) cannot be called with NaN size.
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Control.MeasureOverride(Size constraint)
   at Telerik.Windows.Controls.Gauges.IndicatorBase.MeasureOverride(Size availableSize)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at Telerik.Windows.Controls.Gauges.IndicatorBase.Telerik.Windows.Controls.Gauges.IGaugeIndicator.Measure(Size )
   at Telerik.Windows.Controls.Gauges.IndicatorList.MeasureOverride(Size availableSize)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Canvas.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ItemsPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Control.MeasureOverride(Size constraint)
   at Telerik.Windows.Controls.Gauges.RangedControl.MeasureOverride(Size availableSize)
   at Telerik.Windows.Controls.Gauges.RadialScale.MeasureOverride(Size availableSize)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ItemsPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Control.MeasureOverride(Size constraint)
   at Telerik.Windows.Controls.Gauges.GaugeBase.MeasureOverride(Size availableSize)
   at Telerik.Windows.Controls.Gauges.RadialGauge.MeasureOverride(Size availableSize)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Border.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Control.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Border.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Control.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Border.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Page.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Border.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Control.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Decorator.MeasureOverride(Size constraint)
   at System.Windows.Documents.AdornerDecorator.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Border.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Window.MeasureOverrideHelper(Size constraint)
   at System.Windows.Window.MeasureOverride(Size availableSize)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.ContextLayoutManager.UpdateLayout()
   at System.Windows.UIElement.UpdateLayout()
   at System.Windows.Interop.HwndSource.SetLayoutSize()
   at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)
   at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)
   at System.Windows.Window.SetRootVisual()
   at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)
   at System.Windows.Window.CreateSourceWindowImpl()
   at System.Windows.Window.SafeCreateWindow()
   at System.Windows.Window.ShowHelper(Object booleanBox)
   at System.Windows.Window.Show()
   at System.Windows.Window.ShowDialog()
   at Telerik.Windows.Controls.RadWindowPopup.WindowPopupWindowFactory.WindowPopupWindowImpl.OpenPopup()
   at Telerik.Windows.Controls.RadWindowPopup.WindowPopup.Open(Boolean isModal)
   at Telerik.Windows.Controls.RadWindow.ShowWindow(Boolean modal)
   at Telerik.Windows.Controls.RadWindow.ShowDialog()
   at Telerik.Windows.Controls.RadWindow.ConfigureModal(RadAlert content, DialogParameters dialogParams)
   at Telerik.Windows.Controls.RadWindow.Alert(DialogParameters dialogParameters)
   at Utility.Mvvm.MessageBoxUtility.ShowAlertDialog(String content, Window ownerWindow) 

Erkan Durmaz
Top achievements
Rank 1
 answered on 13 Aug 2010
1 answer
133 views
Hello Sir/Madam,


     I want to know how to use Telerik RadWindow instead of WPF window. Please kindly guide me the steps to follow.
 

 
Viktor Tsvetkov
Telerik team
 answered on 13 Aug 2010
0 answers
132 views
pls i have having serious problem with my application.whenever any transaction takes place,it records the date the transaction took place in this format,04/08/2010(mm,dd,yyyy).from the client end they are suppose to be able to view report for all transaction ,but the problem is that the rad date picker brings out the date in this format
4/8/2010 12:00am but i was able to use this code RadDatePicker1.SelectedDate.Value.ToShortDateString(); to get only the date.what i need is for the date value gotten from this rad date picker to be in the same format with the first one ,that is 04/08/2010 must be in the same format as 4/8/2010. i have tried using SELECT CONVERT(CHAR(10),4/8/2010,110) it didnt work.what sql code do i use.
sigbenu
Top achievements
Rank 1
 asked on 13 Aug 2010
5 answers
142 views
Is their a way to have an expander open out on top of the other controls below,
rather than pushing them down ?
Viktor Tsvetkov
Telerik team
 answered on 13 Aug 2010
4 answers
487 views
Hi ,

I did some test on the grid view and i have an unexpected behaviour.
What is the meaning of a red border when a cell is edited ? (you can see the example on the attached screenshot. )

My problem is that I can't edit one column (the column "6" on the screenshot). The red border appears if i try to put a value. Only this column doesn't work as expected, others can be edited. I spend some time on this problem, i didn't found any solution.

<telerik:RadGridView Name="radgrid" Margin="2,2,2,2" IsScrolling="True" ScrollMode="Deferred" DataLoadMode="Synchronous"
         ItemsSource="{Binding .Value,                      UpdateSourceTrigger=PropertyChanged}"                                    
         EnableColumnVirtualization="True" EnableRowVirtualization="True" MaxHeight="500" MaxWidth="700"
         FrozenColumnCount="1" IsFilteringAllowed="False" ShowGroupPanel="False" RowDetailsVisibilityMode="Collapsed"
         AutoGeneratingColumn="AutoGeneratingColumnEvent" telerik:StyleManager.Theme="Summer" EditTriggers="CellClick" >
    <telerik:RadGridView.Columns>
        <telerik:GridViewDataColumn  IsReadOnly="True" DataMemberBinding="{Binding RowHeader}" CellStyle="{StaticResource RowHeaderStyle}" Header=""/>         
    </telerik:RadGridView.Columns>     
</telerik:RadGridView>

Best regards, 
Jeremie GAMBIN
Nedyalko Nikolov
Telerik team
 answered on 13 Aug 2010
2 answers
172 views
I have a Rad Expander inside a RadPane.
I wish to expand or resize the width of the pane when the expander is expanded and likewise, reduce the width when expander is collapsed.
How to get the desired behavior?
Miroslav
Telerik team
 answered on 13 Aug 2010
1 answer
52 views
Hi,
I have tried running a xbap application that uses your Telerik Drag & Drop control and when i try and perform a drag and drop. I get the following error. I am surprised as you mention in your wpf demo screen that they do support IE6 and your demo page also the same error as well.

System.InvalidOperationException: Root AdornerLayer Not Found. Please make sure that your root visual is Window or other element that has an adorner layer. Alternatively, wrap your root panel in an <AdornerDecorator> element.
   at Telerik.Windows.Controls.DragDrop.RadDragAndDropManager.OpenPopup()
   at Telerik.Windows.Controls.DragDrop.RadDragAndDropManager.StartDragging()
   at Telerik.Windows.Controls.DragDrop.RadDragAndDropManager.TryStartDrag(IMouseEventArgs e)
   at Telerik.Windows.Controls.DragDrop.RadDragAndDropManager.OnTrackedElementMouseMoveInternal(IMouseEventArgs e)
   at Telerik.Windows.Controls.DragDrop.RadDragAndDropManager.OnCoverRectangleMouseMove(Object sender, MouseEventArgs e)
   at System.Windows.Input.MouseEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
   at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
   at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
   at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
   at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
   at System.Windows.UIElement.RaiseTrustedEvent(RoutedEventArgs args)
   at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
   at System.Windows.Input.InputManager.ProcessStagingArea()
   at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
   at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
   at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
   at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
   at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
   at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
   at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
   at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
   at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
   at System.Windows.Threading.Dispatcher.Run()
   at System.Windows.Application.RunDispatcher(Object ignore)
   at System.Windows.Application.StartDispatcherInBrowser(Object unused)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
   at System.Windows.Threading.DispatcherOperation.InvokeImpl()
   at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
   at System.Threading.ExecutionContext.runTryCode(Object userData)
   at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Windows.Threading.DispatcherOperation.Invoke()
   at System.Windows.Threading.Dispatcher.ProcessQueue()
   at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
   at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
   at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
  
  
-----------------------
  
PresentationHost.exe v4.0.40305.0 built by: Main - C:\WINDOWS\system32\PresentationHost.exe
ntdll.dll v5.2.3790.4455 (srv03_sp2_gdr.090203-1205) - C:\WINDOWS\system32\ntdll.dll
kernel32.dll v5.2.3790.4480 (srv03_sp2_gdr.090321-1244) - C:\WINDOWS\system32\kernel32.dll
ADVAPI32.dll v5.2.3790.4555 (srv03_sp2_gdr.090718-1230) - C:\WINDOWS\system32\ADVAPI32.dll
RPCRT4.dll v5.2.3790.4502 (srv03_sp2_gdr.090424-1503) - C:\WINDOWS\system32\RPCRT4.dll
Secur32.dll v5.2.3790.4530 (srv03_sp2_gdr.090615-1611) - C:\WINDOWS\system32\Secur32.dll
USER32.dll v5.2.3790.4033 (srv03_sp2_gdr.070228-0030) - C:\WINDOWS\system32\USER32.dll
GDI32.dll v5.2.3790.4396 (srv03_sp2_gdr.081022-1212) - C:\WINDOWS\system32\GDI32.dll
ole32.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\ole32.dll
msvcrt.dll v7.0.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\msvcrt.dll
OLEAUT32.dll v5.2.3790.4202 - C:\WINDOWS\system32\OLEAUT32.dll
mscoree.dll v4.0.31106.0 (Main.031106-0000) - C:\WINDOWS\system32\mscoree.dll
SHLWAPI.dll v6.00.3790.4603 (srv03_sp2_gdr.091015-1453) - C:\WINDOWS\system32\SHLWAPI.dll
WININET.dll v6.00.3790.4696 (srv03_sp2_gdr.100419-1942) - C:\WINDOWS\system32\WININET.dll
CRYPT32.dll v5.131.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\CRYPT32.dll
MSASN1.dll v5.2.3790.4584 (srv03_sp2_gdr.090904-1300) - C:\WINDOWS\system32\MSASN1.dll
urlmon.dll v6.00.3790.4696 (srv03_sp2_gdr.100419-1942) - C:\WINDOWS\system32\urlmon.dll
VERSION.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\VERSION.dll
SHELL32.dll v6.00.3790.4751 (srv03_sp2_gdr.100726-0339) - C:\WINDOWS\system32\SHELL32.dll
comctl32.dll v6.0 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\comctl32.dll
PresentationHost_v0400.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\WPF\PresentationHost_v0400.dll
MSVCR100_CLR0400.dll v10.00.30319.1 - C:\WINDOWS\system32\MSVCR100_CLR0400.dll
PSAPI.DLL v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\PSAPI.DLL
MSCTF.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\MSCTF.dll
CLBCatQ.DLL v2001.12.4720.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\CLBCatQ.DLL
COMRes.dll v2001.12.4720.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\COMRes.dll
xpsp2res.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\xpsp2res.dll
mlang.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\mlang.dll
wsock32.dll v5.2.3790.0 (srv03_rtm.030324-2048) - C:\WINDOWS\system32\wsock32.dll
WS2_32.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WS2_32.dll
WS2HELP.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WS2HELP.dll
mswsock.dll v5.2.3790.4318 (srv03_sp2_gdr.080620-1216) - C:\WINDOWS\system32\mswsock.dll
hnetcfg.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\hnetcfg.dll
wshtcpip.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\System32\wshtcpip.dll
dfshim.dll v4.0.31106.0 (Main.031106-0000) - C:\WINDOWS\system32\dfshim.dll
mscoreei.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll
clr.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\clr.dll
RASAPI32.DLL v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\RASAPI32.DLL
rasman.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\rasman.dll
NETAPI32.dll v5.2.3790.4392 (srv03_sp2_gdr.081016-1620) - C:\WINDOWS\system32\NETAPI32.dll
TAPI32.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\TAPI32.dll
rtutils.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\rtutils.dll
WINMM.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WINMM.dll
rdpsnd.dll v5.2.3790.0 (srv03_rtm.030324-2048) - C:\WINDOWS\system32\rdpsnd.dll
WINSTA.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WINSTA.dll
msv1_0.dll v5.2.3790.4587 (srv03_sp2_gdr.090910-1205) - C:\WINDOWS\system32\msv1_0.dll
cryptdll.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\cryptdll.dll
iphlpapi.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\iphlpapi.dll
sensapi.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\sensapi.dll
USERENV.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\USERENV.dll
msxml3.dll v8.100.1050.0 - C:\WINDOWS\system32\msxml3.dll
msi.dll v3.1.4000.4042 - C:\WINDOWS\system32\msi.dll
actxprxy.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\actxprxy.dll
SXS.DLL v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\SXS.DLL
PresentationHostProxy.dll v4.0.31106.0 built by: Main - C:\WINDOWS\system32\PresentationHostProxy.dll
mscorlib.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\mscorlib\4ff1f12a08d455f195ba996fe77497c6\mscorlib.ni.dll
culture.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\culture.dll
nlssorting.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\nlssorting.dll
System.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System\161c6f80ad93b0505054d244f1c6243c\System.ni.dll
WindowsBase.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\WindowsBase\f1f3a74eb37b27b7d05b8ffa941f8473\WindowsBase.ni.dll
rsaenh.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\rsaenh.dll
PresentationCore.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\PresentationCore\7a1eeb425f9318f432afead4b2da965a\PresentationCore.ni.dll
PresentationFramework.ni.dll v4.0.30319.1 - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\PresentationFramewo#\8357ade60159c25ee88db0aab8686e6d\PresentationFramework.ni.dll
wpftxt_v0400.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\WPF\wpftxt_v0400.dll
wpfgfx_v0400.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\WPF\wpfgfx_v0400.dll
PresentationNative_v0400.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\WPF\PresentationNative_v0400.dll
System.Xaml.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Xaml\d85a3d6ed5bb77f5603e098cccf60bfa\System.Xaml.ni.dll
System.Deployment.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Deployment\0778748cd9700240f093adfc5dfc5750\System.Deployment.ni.dll
shfolder.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\shfolder.dll
mshtml.dll v6.00.3790.4696 (srv03_sp2_gdr.100419-1942) - C:\WINDOWS\system32\mshtml.dll
SHDOCVW.dll v6.00.3790.4696 (srv03_sp2_gdr.100419-1942) - C:\WINDOWS\system32\SHDOCVW.dll
CRYPTUI.dll v5.131.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\CRYPTUI.dll
WINTRUST.dll v5.131.3790.4642 (srv03_sp2_gdr.091223-1236) - C:\WINDOWS\system32\WINTRUST.dll
imagehlp.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\imagehlp.dll
WLDAP32.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WLDAP32.dll
msls31.dll v3.10.349.0 - C:\WINDOWS\system32\msls31.dll
System.Configuration.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Configuration\ac2cd19f2159d48684e17cbdecfaa3b7\System.Configuration.ni.dll
System.Xml.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Xml\2d7c29ad77c15abfa6a8fe6d24840a91\System.Xml.ni.dll
msimtf.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\msimtf.dll
UxTheme.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\UxTheme.dll
IMM32.DLL v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\IMM32.DLL
winhttp.dll v5.2.3790.4584 (srv03_sp2_qfe.090904-1300) - C:\WINDOWS\WinSxS\x86_Microsoft.Windows.WinHTTP_6595b64144ccf1df_5.1.3790.4584_x-ww_FE3453F4\winhttp.dll
jscript.dll v5.6.0.8837 - C:\WINDOWS\system32\jscript.dll
ImgUtil.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\ImgUtil.dll
pngfilt.dll v5.2.3790.4696 (srv03_sp2_gdr.100419-1942) - C:\WINDOWS\system32\pngfilt.dll
System.Security.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Security\0f2c177d8261d29f86d89095eef16727\System.Security.ni.dll
cryptnet.dll v5.131.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\cryptnet.dll
NTDSAPI.DLL v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\NTDSAPI.DLL
DNSAPI.dll v5.2.3790.4318 (srv03_sp2_gdr.080620-1216) - C:\WINDOWS\system32\DNSAPI.dll
mshtmled.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\mshtmled.dll
clrjit.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\clrjit.dll
System.Drawing.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Drawing\2fe09cc54a8390b20e380239db34228f\System.Drawing.ni.dll
System.Windows.Forms.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Windows.Forms\f3cdd09fc0acc85c7febbd2e2ef9c4e5\System.Windows.Forms.ni.dll
Cabinet.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\Cabinet.dll
gdiplus.dll v5.2.6001.22319 (vistasp1_ldr.081126-1506) - C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_F0B4C2DF\gdiplus.dll
PresentationFramework.Classic.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\PresentationFramewo#\340df2dd99f470883c9a7834a1533f8a\PresentationFramework.Classic.ni.dll
System.Core.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Core\85693dfd9ba4905b0fd947fdb51446d5\System.Core.ni.dll
d3d9.dll v5.3.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\d3d9.dll
d3d8thk.dll v5.2.3790.0 (srv03_rtm.030324-2048) - C:\WINDOWS\system32\d3d8thk.dll
WindowsCodecs.dll v6.0.5840.16388 (winmain(wmbla).061024-1209) - C:\WINDOWS\system32\WindowsCodecs.dll
System.Data.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Data\c12e10c218be4be353975af6abb072d9\System.Data.ni.dll
System.Data.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll
System.ServiceModel.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel\40f4f298c3c655b834c73b5046a9cd0b\System.ServiceModel.ni.dll
System.Runtime.DurableInstancing.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Runtime.Dura#\591cc2015a0165ede73d3e6770e0e7c2\System.Runtime.DurableInstancing.ni.dll
SMDiagnostics.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\SMDiagnostics\b420437eca1d1aec1a8bf23cc5173661\SMDiagnostics.ni.dll
System.Transactions.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Transactions\40ab9da3eafd6bd1cbc6695ba406975a\System.Transactions.ni.dll
System.Transactions.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll
System.IdentityModel.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.IdentityModel\81558b32b261e911f8f822f1de63fdca\System.IdentityModel.ni.dll
System.WorkflowServices.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.WorkflowServ#\c78cd3b6665dfbfb79a089860c4b5657\System.WorkflowServices.ni.dll
System.ServiceModel.Web.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel#\693efbadb4cca18d1a0fe24a355d7fba\System.ServiceModel.Web.ni.dll
System.ServiceModel.Discovery.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel#\589e9eded9e383f4b7dfa4c66aa5c9bf\System.ServiceModel.Discovery.ni.dll
System.ServiceModel.Activities.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel#\67c54ed5743b27d8e8570a7688de93ae\System.ServiceModel.Activities.ni.dll
System.Activities.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Activities\1f1416d0bd44f4f4b7b447dd46100cb2\System.Activities.ni.dll
Microsoft.VisualBasic.Activities.Compiler.ni.dll v10.0.30319.1 - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\Microsoft.VisualBas#\f4e162e7a860c3577fbb3455fc1349a5\Microsoft.VisualBasic.Activities.Compiler.ni.dll
System.Activities.DurableInstancing.ni.dll v4.0.30319.1 - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Activities.D#\04bf5714cef2ce3fc97d55c9843b36f0\System.Activities.DurableInstancing.ni.dll
System.ServiceModel.Routing.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel#\82ed1ab8f0885159082e80a036ff644b\System.ServiceModel.Routing.ni.dll
System.ServiceModel.Channels.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel#\eeae22dcbdfe5fbe6ee7aa8810c8d330\System.ServiceModel.Channels.ni.dll
System.Runtime.Serialization.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Runtime.Seri#\30ed505f7ea7d6139128d4a6d9981dc0\System.Runtime.Serialization.ni.dll
System.Numerics.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Numerics\be70c34efd115166a2710acac3346bfa\System.Numerics.ni.dll
WtsApi32.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WtsApi32.dll
UIAutomationProvider.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\UIAutomationProvider\b56a80a51f412ce3832eddecb9bf1580\UIAutomationProvider.ni.dll
Accessibility.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\Accessibility\46c8b155e6fcd5696ffa15a67824ebab\Accessibility.ni.dll
diasymreader.dll v10.0.30319.1 built by: RTMRel - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\diasymreader.dll

Any help would be great

Thanks

Simon
Tsvyatko
Telerik team
 answered on 12 Aug 2010
2 answers
56 views
i m dragging a Collection from one grid to another and it is working fine. but i want to show the details of all selected Items in Cue (which are dragging right now) and secondly my dragging items contains itself the details lines too.
following is the Structure
Request -> RequestDetails

and my dragging Collection is ObservableCollection<Request>

and i want to show Content like this

Request-1
----RequestDetail-1
----RequestDetail-2
----RequestDetail-3
Request-2
----RequestDetail-1
----RequestDetail-2
----RequestDetail-3
Request-3
----RequestDetail-1
----RequestDetail-2
----RequestDetail-3

currently only first item is shown but not all.
Tsvyatko
Telerik team
 answered on 12 Aug 2010
1 answer
83 views
I've used WPF in WinForms using WPF Interoperability / ElementHost.  I've never had a problem, until I attempted to do this with RadMap.

I've built a very simple application using RadMap, and attempted to host in WinForms using ElementHost.  This message does not allow me to attach the file; therefore, I've uploaded the sample app here: http://rapidshare.com/files/412317183/WPFHostTest.7z

This demo project is very simple and straightforward; it will illustrate how RadMap will not render when used inside of ElementHost.

Is there a method to get this working, and if not, can this be logged in the tracking system?

Thank you in advance!
Andrey
Telerik team
 answered on 12 Aug 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?