or
<
StackPanel
Background
=
"White"
x:Name
=
"stackExampleItems"
Orientation
=
"Vertical"
telerik:DragDropManager.AllowCapturedDrag
=
"True"
>
<
ItemsControl
ItemsSource
=
"{Binding CurrentExampleItems}"
>
<
ItemsControl.ItemTemplate
>
<
DataTemplate
>
<
local:ExampleItemView
DataContext
=
"{Binding }"
/>
</
DataTemplate
>
</
ItemsControl.ItemTemplate
>
</
ItemsControl
>
</
StackPanel
>
private
System.Windows.Controls.ListBoxItem GetItemFromPoint(FrameworkElement listBox, Point CurrentPoint)
{
var p = listBox.TransformToVisual(App.Center.RootVisual).Transform(CurrentPoint);
IEnumerable hits = VisualTreeHelper.FindElementsInHostCoordinates(p, listBox);
System.Windows.Controls.ListBoxItem item =
null
;
foreach
(UIElement element
in
hits)
{
if
(element
is
System.Windows.Controls.ListBoxItem)
{
item = (System.Windows.Controls.ListBoxItem)element;
break
;
}
}
return
item;
}
<
telerik:RadNumericUpDown
Value
=
"{Binding DaysNumber}"
Minimum
=
"1"
IsInteger
=
"True"
VerticalAlignment
=
"Center"
Margin
=
"5"
Maximum
=
"999"
>
<
telerik:RadNumericUpDown.NumberFormatInfo
>
<
globalization:NumberFormatInfo
NumberGroupSeparator
=
""
NumberDecimalSeparator
=
"."
/>
</
telerik:RadNumericUpDown.NumberFormatInfo
>
</
telerik:RadNumericUpDown
>
I noticed that the gauge.xaml was embedded in the assembly "Telerik.WIndows.Controls.DataVisualization.dll" before (in Q2) and it is no longer there now. I could not find any related information in readme, anyone knows how to find this missing resource? Thanks in advance for any tips or links.