Telerik Forums
UI for WPF Forum
1 answer
176 views
Hello,
I'm using a MVVM pattern (Caliburn Micro) and I use the dockmanager that another user posted on this forum some time ago, I need to load at the application startup a Pane that should be docked right with auto-hide as default... I've tried setting IsPinned = false but as I pass over the tab it will stay pinned, instead if I right click -> Auto hide it's ok

Any suggestion?
Thanks
Konstantina
Telerik team
 answered on 13 Jan 2012
1 answer
59 views
I am working with treeview with DataBinding to an object in the view model, when creating a new item in the tree it is created but it is not highlighed or selected. What I did, is to add the new created object to the collection in the view model which treeview bind on it. and its successfully added and also appeared on the screen but its not selected.

Any Advice?
Thanks;
Tina Stancheva
Telerik team
 answered on 13 Jan 2012
1 answer
114 views
Hi.

I tried to print out the chart.
I created some codes with reference to the source code of demo project(Export PDF/Print), but following exception has occurred.

I've tried to save docx file. It worked fine. please check my codes......

----------------------------------------------------------------------------------------------------------------------------------------------


private void PrintChart()
{
            RadRichTextBox RadRichTextBox1 = new RadRichTextBox();
            RadRichTextBox1.Document = CreateDocument();

// below line made a exception : NullReferenceException was unhandled
            RadRichTextBox1.Print("test",PrintMode.Native);


}



        private void CreateChartDocumentPart(RadDocument document)
        {
            Telerik.Windows.Documents.Model.Section section = new Telerik.Windows.Documents.Model.Section();
            Telerik.Windows.Documents.Model.Paragraph paragraph = new Telerik.Windows.Documents.Model.Paragraph();


            MemoryStream ms = new MemoryStream();
            currentChart.ExportToImage(ms, new PngBitmapEncoder());


            double imageWidth = currentChart.ActualWidth;
            double imageHeight = currentChart.ActualHeight;
            if (imageWidth > 625)
            {
                imageWidth = 625;
                imageHeight = currentChart.ActualHeight * imageWidth / currentChart.ActualWidth;
            }


            ImageInline image = new ImageInline(ms, new Size(imageWidth, imageHeight), "png");


            paragraph.Inlines.Add(image);
            section.Blocks.Add(paragraph);
            document.Sections.Add(section);


            ms.Close();
        }



        private RadDocument CreateDocument()
        {
            RadDocument document = new RadDocument();


            this.CreateChartDocumentPart(document);
            //this.CreateGridDocumentPart(document);


            return document;
        }


Nikolay
Telerik team
 answered on 13 Jan 2012
3 answers
435 views
Hello Telerik Team,

Is it possible to remove the border around the ChildTableDefinition?

See attached image where I have marked the border using red rectangles. Note that I want to remove the border completely on all sides of the child grid

Thanks,
Kumar
Maya
Telerik team
 answered on 13 Jan 2012
2 answers
157 views
Hi everyone,

A simple question - but I'm not sure it's a simple answer :) ...

Is there a straight forward way to enable tiles to be dragged (copied or moved) between two or more instances of a TileView?

I'm developing an audio performance app that allows the user to create multiple playlists (each playlist being a viewmodel/view in a collection). I'm using the TileView to display the 'tracks' in the playlist, as it has the right combination of selection, click n' drag and re-ordering animations that I was looking for - but in addition to dragging tracks (tiles) around to reorder them in a playlist (tileview), I'd also like to be able to drag them across into other playlists (additional tileviews).

Any thoughts? 

Thanks!

Oli.
Oli
Top achievements
Rank 1
 answered on 12 Jan 2012
5 answers
200 views
Hi,

I need to use in my project a Treeview in hidding Pane, when i use it  with DocumentHost the Pane don't hide after lost focus.

<telerikDocking:RadDocking d:LayoutOverrides="Width">
             
            <telerikDocking:RadDocking.DocumentHost>
                    <Grid Name="NotDockable" Background="Black" Height="340">
                        <TextBlock Foreground="Aquamarine">
                            lalalalaaallal                 
                        </TextBlock>              
                    </Grid>
            </telerikDocking:RadDocking.DocumentHost>
             
            <telerikDocking:RadSplitContainer>
                <telerikDocking:RadPaneGroup>
                    <telerikDocking:RadPane Header="Pane 1" CanUserClose="False" CanFloat="False" CanDockInDocumentHost="False" />
                </telerikDocking:RadPaneGroup>
            </telerikDocking:RadSplitContainer>
        </telerikDocking:RadDocking>

All controls on the page must be dockable?

Thank you,
Ivo
Telerik team
 answered on 12 Jan 2012
2 answers
213 views
After I publish a WPF application and then try to install it . . . I get the following error:

Unable to install or run the application. The application requires that assembly Telerik.Windows.Data Version 2010.2.924.40 be installed in the Global Assembly Cache (GAC) first.

I am using Version 2010.3.1314.40 . . . so I am not sure why an earlier version is required. In the properties of Telerik.Windows.Data,
Copy Local is set to true. So if this copies the assembly to the client machine that I assume this should resolve the issue, but it has not.

I have attached an image of the full properties of Telerik.Windows.Data.

Please help if you have any ideas.

Thanks.

Kellie
Top achievements
Rank 1
 answered on 12 Jan 2012
9 answers
474 views
I have a scenario where i have two grids side-by-side in my WPF app and as i scroll one grid id like to scroll the second one to keep in sync. both grids will contain one column that will have a matching key.

how can i accomplish this?
Maya
Telerik team
 answered on 12 Jan 2012
2 answers
55 views
Hi,

I want to disable some buttons when I have more that one dataseries in the chart. So I have chosen DataBound event of chart. But I can not access to number of dataseries which was loaded into grid at that moment. I have seen number of data series in some private properties of chart by using Quick Watch window but I can not see in public ones (number of data series).

Thanks in advance.
MahMah
Top achievements
Rank 1
 answered on 12 Jan 2012
2 answers
101 views

Hi Guys,
              i have a gridView, The idea is to tab throught the different entries in the grid.

Problem:  When I try to tab through the entries a dotted border kind of a thing appears when I tab the first time. When I tab the second time then the focus moves to the next row.
Could anyone please tell me why the dotted border is appearing and how can i get rid of it.

best regards,
prithu

prithu
Top achievements
Rank 1
 answered on 12 Jan 2012
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
LayoutControl
ProgressBar
Sparkline
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
SplashScreen
Callout
Rating
Accessibility
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?