Telerik Forums
UI for WPF Forum
2 answers
407 views

Dear, Admin

I have a following scenario and try to accomplished by the grid view.

1) User can drag and drop a cell in the grid view and drop it in the wpf list view.
2) the value of the dragging cell from second column and another data in item row will set to item in list view.

3) another column is protect and not drag from another column.

Please help me with sample attachment
Thanks a lot

Mehrdad


Dinko | Tech Support Engineer
Telerik team
 answered on 20 Jun 2018
3 answers
106 views

     Hello,

 

When I look at Column.ActualSize for a GridViewColumn I get the correct size for all column except for columns that aren't in view (horizontally). Is there a way I can force the column to resize based on SizeToCells programatically? 

 

Stefan
Telerik team
 answered on 20 Jun 2018
3 answers
204 views
Is there in option in radcontextmenu as duplicate option? where it duplicates the row n number of times? For example radcontextmenu providing duplicate option and dupicate option in turn again provide options of numbers as how many rows to duplicate? Any help would be much appreciated.
Martin Ivanov
Telerik team
 answered on 19 Jun 2018
5 answers
370 views

Hi,

How can I put the theme on only one page of my application without adding ResourceDictionary in App.xaml.

I don't want the theme to change the look of my whole application.

Best Regards

Kourosh

Martin Ivanov
Telerik team
 answered on 19 Jun 2018
1 answer
280 views

Hi,

I would like to use the RadNumericUpDown but would have to make all numbers double digits.

So with numbers from 1 to 99 there should 01, 02, 03 ... appear.

Is there a function for this?

 

Thanks in advance

Kalin
Telerik team
 answered on 19 Jun 2018
2 answers
442 views
I was using the trial version of Telerik UP WPF and have purchased the DevCraft Complete Developers License and installed it, but I'm still getting the warning that comes up that tells me I'm using the trial version and do I want to buy the dev version.  How do I get rid of this warning?
Ken
Top achievements
Rank 1
 answered on 18 Jun 2018
1 answer
99 views

I have busy indicators on many screens but to make them look nicer we span it across the entire grid so as long it is busy the entire grid is blocked.

So far so good.

But my problem is in design mode, because of the overlap i cannot click the other controls in design anymore. Is there anyway i can avoid this except resizeing the busyindicator of set it in commentfor a moment?

Stefan
Telerik team
 answered on 18 Jun 2018
1 answer
157 views

Hi Telerik,

I'm writing an app that is basically showing a pivot grid with a RadChartView on it.  I'm using the "Rad Chart View Integration" as an example.

How do I make the tooltips show the column names and not just their values?

I'm attaching a screenshot showing what I have and what I want.

 

Thanks so much!

Martin Ivanov
Telerik team
 answered on 18 Jun 2018
4 answers
646 views

I've installed the trial version and added a RadButton instead of the Wpf Button.

The app starts. the trial popup is displayed. I close the popup and the button is never displayed. It's there, it's just always hidden.

Any thoughts?

Martin Ivanov
Telerik team
 answered on 18 Jun 2018
1 answer
125 views

Hi

I created custom data model that is displayed in RadDiagramToolbox. The shapes are shown properly in the toolbox, however when I drag them to the diagram, the diagram shows them only as squares. Below is the xaml for the UI

 

<Grid x:Name="diagramRootPanel">
            <Grid.DataContext>
                <local:MainViewModel/>
            </Grid.DataContext>
            <Grid.Resources>
                <telerik:HierarchicalGalleryItemsCollection x:Key="ToolboxSource"/>
                <telerik:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />

                <DataTemplate x:Key="ToolboxItemTemplate">
                    <Border Height="100" Margin="0,1,1,0" Width="76">
                        <Grid>
                            <Grid.RowDefinitions>
                                <RowDefinition Height="*"/>
                                <RowDefinition Height="Auto"/>
                            </Grid.RowDefinitions>
                            <Viewbox Width="64"
                             Height="50"
                             Margin="5 10 5 0"
                             HorizontalAlignment="Center"
                             VerticalAlignment="Top"
                             Stretch="Uniform">
                                <telerik:RadDiagramShape Margin="15"
                                                 VerticalAlignment="Top"
                                                 HorizontalContentAlignment="Center"
                                                 VerticalContentAlignment="Center"
                                                 Geometry="{Binding Geometry}"
                                                 IsHitTestVisible="False" />
                            </Viewbox>
                            <TextBlock Grid.Row="1"
                               Margin="0 0 0 5"
                               HorizontalAlignment="Center"
                               FontFamily="Segoe UI Semibold"
                               Padding="4 0"
                               Text="{Binding Header}"
                               TextAlignment="Center"
                               TextWrapping="Wrap" />
                        </Grid>
                    </Border>
                </DataTemplate>
                
                <!--  ToolboxGroupTemplate  -->
                <HierarchicalDataTemplate x:Key="ToolboxGroupTemplate"
                                  ItemsSource="{Binding Shapes}"
                                  ItemTemplate="{StaticResource ToolboxItemTemplate}">
                    <TextBlock Text="{Binding Header}" />
                </HierarchicalDataTemplate>
            </Grid.Resources>

            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*"/>
                <ColumnDefinition Width="Auto"/>
            </Grid.ColumnDefinitions>

            <Grid x:Name="diagramHostPanel" Grid.Column="0" Margin="10,162,0.4,-0.2">
                <Grid.RowDefinitions>
                    <RowDefinition Height="20"/>
                    <RowDefinition Height="*"/>
                </Grid.RowDefinitions>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="20"/>
                    <ColumnDefinition Width="*"/>
                </Grid.ColumnDefinitions>

                <telerik:RadDiagram x:Name="diagram" SelectionMode="Extended" Grid.Column="1" Grid.Row="1">
                    <Primitives:ItemInformationAdorner.AdditionalContent>
                        <telerik:SettingsPane Diagram="{Binding ElementName=diagram}"/>
                    </Primitives:ItemInformationAdorner.AdditionalContent>
                </telerik:RadDiagram>
                <telerik:RadDiagramRuler Diagram="{Binding ElementName=diagram}" Placement="Left" Grid.Row="1"/>
                <telerik:RadDiagramToolbox x:Name="toolbox" Grid.RowSpan="2" Grid.Column="2"
                               Title="Components"
                               Width="330"
                               HorizontalAlignment="Right"
                               Header="{Binding SelectedItem.Header,
                                                RelativeSource={RelativeSource Self}}"
                               ItemsSource="{Binding Items}"
                               ItemTemplate="{StaticResource ToolboxGroupTemplate}"
                               Visibility="{Binding IsChecked,
                                                    ElementName=toolboxButton,
                                                    Converter={StaticResource BooleanToVisibilityConverter}}" />

                <telerik:RadDiagramRuler Grid.Column="1" Diagram="{Binding ElementName=diagram}" Placement="Top"/>
            </Grid>
        </Grid>

Dinko | Tech Support Engineer
Telerik team
 answered on 18 Jun 2018
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
ProgressBar
Sparkline
LayoutControl
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?