Telerik Forums
UI for WPF Forum
6 answers
109 views
Hi,



We have created a new application using Telerik Rad Controls for WPF, and using the current Release Q2 controls.

When the application is deployed in Windows 8, RadRibbonWindow does not show the Window Resize buttons (minimize,maximize & close) in the Top Right corner.

These buttons are properly seen if deployed in windows 7 or any other OS.



Please find the attached screen shot where the issue is captured.



Kindly suggest.



Thank you & Regards,

Phani.
Sia
Telerik team
 answered on 25 Feb 2015
1 answer
111 views
I've taken over the development of an Office Add-in that uses WPF for Custom Task Panes. I implementedTelerik RadPanelBar and RTFviewer to support some new features.

For design and development in Visual Studio I added the assemblies to the GAC and referenced them from the Add-in project. The solution runs on the dev machine but after build and deployment (through .msi) the Task Pane won't open because the Telerik dlls are not available.

I saw this blog post about merging assemblies in WPF but I can't use this solution because it slows down and crashes the Office application if I try to run this assembly resolver at startup.

How can I merge the referenced Telerik assemblies into the add-in dll or at least copy and deploy as part of the add-in installation?

Thanks
Petya
Telerik team
 answered on 25 Feb 2015
0 answers
111 views
Hi!

I'm implementing a POC by using the excellent RadCartesianChart component and I got a requirement regarding the LineSeries style: when using an annotation bound to the HorizontalAxis, is it possible to customize the LineSeries' style so it can be different between both sides of the annotation?

I've attached an image that shows what I have achieved so far. On the right side of the annotation I need to show the LineSeries as striped, instead of solid (the left side will remain solid).

Is it possible to have multiple styles by using only one series?

Thanks in advance,

Fred
Fred
Top achievements
Rank 1
 asked on 25 Feb 2015
0 answers
34 views
Hi!

I'm implementing a POC by using the excellent RadCartesianChart component and I got a requirement regarding the LineSeries style: when using an annotation bound to the HorizontalAxis, is it possible to customize the LineSeries' style so it can be different between both sides of the annotation?

I've attached an image that shows what I have achieved so far. On the right side of the annotation I need to show the LineSeries as striped, instead of solid (the left side will remain solid).

Is it possible to have multiple styles by using only one series?

Thanks in advance,

Fred
Fred
Top achievements
Rank 1
 asked on 25 Feb 2015
1 answer
91 views
Hello,

My VisualizationLayer has the setting ClusteringEnabledThreshold="11", but clustering continues at higher zoom levels (e.g., at 18).  Setting the ClusteringEnabledThreshold does not seem to stop clustering.  (I suspect I'm mis-interpreting how this parameter is to be used). 

Can you please provide guidance? 

The specific layer definition is:
  <telerik:VisualizationLayer x:Name="mainVizLayer" ItemTemplateSelector="{StaticResource WellSymbolTemplateSelector}"
                                             ClusteringEnabled="True" ClusteringEnabledThreshold="11">
</telerik:VisualizationLayer>

Thank you,
Bob
Pavel R. Pavlov
Telerik team
 answered on 25 Feb 2015
12 answers
139 views
Hello,

when I populate the graph with so many connections outgoing from a specific node, it takes so so so much time!

Here is my graph source

class GraphSource : GraphSourceBase<Node, Link>
        {
            List<Cluster> clusters = new List<Cluster>();
            public GraphSource()
            {
                 Cluster c1 = new Cluster("Cluster1");
                Cluster c2 = new Cluster("Cluster2");
                Cluster c3 = new Cluster("Cluster3");
                Cluster c4 = new Cluster("Cluster4");
                Cluster c5 = new Cluster("Cluster5");
                Cluster c6 = new Cluster("Cluster6");
 
             
                ECU eCU1 = new ECU("ECU1");
                ECU eCU2= new ECU("ECU2");
                ECU eCU3 = new ECU("ECU3");
                ECU eCU4 = new ECU("ECU4");
                ECU eCU5 = new ECU("ECU5");
                ECU eCU6 = new ECU("ECU6");
                ECU eCU7 = new ECU("ECU7");
                ECU eCU8 = new ECU("ECU8");
                ECU eCU9 = new ECU("ECU9");
                ECU eCU10 = new ECU("ECU10");
                ECU eCU11 = new ECU("ECU11");
                ECU eCU12 = new ECU("ECU12");
                ECU eCU13 = new ECU("ECU13");
                ECU eCU14 = new ECU("ECU14");
                ECU eCU15 = new ECU("ECU15");
                ECU eCU16 = new ECU("ECU16");
                ECU eCU17 = new ECU("ECU17");
                ECU eCU18 = new ECU("ECU18");
                ECU eCU19 = new ECU("ECU19");
                ECU eCU20 = new ECU("ECU20");
 
                c1.AddECU(eCU1);
                c1.AddECU(eCU2);
                c1.AddECU(eCU3);
                c1.AddECU(eCU4);
                c1.AddECU(eCU5);
 
                c2.AddECU(eCU1);
                c2.AddECU(eCU6);
                c2.AddECU(eCU7);
                c2.AddECU(eCU8);
                c2.AddECU(eCU9);
                c2.AddECU(eCU10);
                c2.AddECU(eCU11);
                c2.AddECU(eCU12);
                c2.AddECU(eCU13);
 
                c3.AddECU(eCU13);
                c3.AddECU(eCU17);
                c3.AddECU(eCU18);
                c3.AddECU(eCU19);
 
                c4.AddECU(eCU11);
                c4.AddECU(eCU12);
                c4.AddECU(eCU13);
                c4.AddECU(eCU14);
 
                c5.AddECU(eCU15);
                c5.AddECU(eCU16);
                c5.AddECU(eCU17);
                c5.AddECU(eCU18);
 
                c6.AddECU(eCU19);
                c6.AddECU(eCU20);
 
                clusters.Add(c1);
                clusters.Add(c2);
                clusters.Add(c3);
                clusters.Add(c4);
                clusters.Add(c5);
                clusters.Add(c6);
            }
 
 
            public void PopulateGraph()
            {
                foreach (Cluster cluster in clusters)
                {
 
                    Node vNode = new Node() { Width=10,Height=10};
 
                    this.AddNode(vNode);
                    foreach (ECU eCU in cluster.GetECUs())
                    {
 
                        IEnumerable<Node> res = from Node nn in this.Items where eCU.Name.Equals(nn.Content) select nn;
 
                        if (res.Count() == 0)
                        {
                            Node eNode = new Node() { Content = eCU.Name };
                            this.AddNode(eNode);
                            this.AddLink(new Link(vNode, eNode));
                        }
                        else
                        {
                            this.AddLink(new Link(vNode, res.First()));
                        }
 
                    }
                }
 
            }
 
        }


Thanks in advance,
Hassan
          
Hassan
Top achievements
Rank 1
 answered on 25 Feb 2015
1 answer
113 views
Is there way  to show the editing dialog for appointments non-modal?
Rosi
Telerik team
 answered on 25 Feb 2015
1 answer
75 views
Hi,

I'm using the Office2013Theme and I would like to know if something exist to facilitate the drag/drop operation when we have a verry small appointment?

Thank's
Alain
Rosi
Telerik team
 answered on 25 Feb 2015
1 answer
103 views
I am trying to create a menu where the top section is databound, with a divider, and then a couple static items on the bottom  Like this:

Link 1
Link 2
Link 3
----------
Add Link

So the user can delete Links by right clicking.

So is there a way to mix data bound and static items in a menu?
Kalin
Telerik team
 answered on 25 Feb 2015
2 answers
142 views
Hi

I'm trying to use the NoXmal binaries with Prism.

I have a region that contains the RadRibbonTab.  When I inject it into the RadRibbonView region nothing appears.

If I use the normal binaries everything works fine.

When using the NoXmal binaries, I can create a RadRibbonTab in the xmal file and it shows up.

This is the code for the RabRibbonTab view I'm adding to the region

<telerik:RadRibbonTab xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"<br>        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" <br>        x:Class="TelerikWpfApp1.Views.HomeRibbonView"<br>        xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.RibbonView"<br>        Header="Home"><br>    <telerik:RadRibbonGroup Header="Jobs"><br>        <telerik:RadRibbonButton Content="Job List" Command="{Binding OpenJobListCommand}" /><br>    </telerik:RadRibbonGroup><br>    <telerik:RadRibbonGroup Header="Data"><br>        <telerik:RadRibbonButton Content="Sync Data" Command="{Binding OpenSyncViewCommand}" /><br>    </telerik:RadRibbonGroup><br></telerik:RadRibbonTab>


Any ideas?

Thanks

Nick
Nicholas
Top achievements
Rank 1
 answered on 24 Feb 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?