Telerik Forums
UI for WPF Forum
2 answers
123 views
What are the possible Command Parameters for the the Align Command?

So far I have found the following:
  • Left
  • Right
  • Top
  • Bottom
  • Center
  • Middle

Are there any others?

P.S. Is there a date for when the Diagram control will be out of Beta?
Eric
Top achievements
Rank 1
 answered on 19 Apr 2012
0 answers
71 views
Hi,

still the same Problem. i get all my Appointments from a sqlite DB. To Create a simple Appointment is no Problem,, but how do i add a
RecurrenceRule to an Appointment?

I create a var called Pattern:
var Pattern = new RecurrencePattern()
    {
           DayOrdinal = DayOrdinal_i,
           DaysOfWeekMask =DaysofWeekMask_v,
           FirstDayOfWeek = FirstDayofWeek_d,
           Frequency= Frequency_v,
            Interval = Convert.ToInt32(tasks_dr.Field<Int64>("Interval")),
            MaxOccurrences = Convert.ToInt32(tasks_dr.Field<Int64>("MaxOccurrences")),
            MonthOfYear = Convert.ToInt32(tasks_dr.Field<Int64>("MonthofYear")),
            DayOfMonth = Convert.ToInt32(tasks_dr.Field<Int64>("DayofMonth"))
      };

Then i start to create the Appointment:
Appointment appointment = new Appointment
      {
            Start = start,
            Url = "text",
            End = end,                                                     
            Subject = tasks_dr.Field<String>("Subject"),
            Body = tasks_dr.Field<String>("Body"),                           
             Importance = Importance_v
             //RecurrenceRule = rrr
       };

But how will the Appointment now about the var Pattern?

I can't find any example or something on the help Page :-(((

Thanks
Rene
ITA
Top achievements
Rank 1
 asked on 19 Apr 2012
1 answer
88 views
The provided code to serialize a RadGridView with the PF will fail if the column header is not specified. I normally don't specify a column for the row details toggle columns.
Alex Fidanov
Telerik team
 answered on 19 Apr 2012
1 answer
126 views
I need to some help regarding the chart. I need to show clustered bar chart and have to add series dynamically. Below is my code that builds the chart..
=======================================================================================================
                    List<ChartDispayView> lineResultsList = new List<ChartDispayView>();
                    locChart.SeriesMappings.Clear();
                    
                    foreach (var line in vmRef.ChartLineMasterCollection)
                    {
                        if (line.IsChecked)
                        {
                            lineResultsList.AddRange(this.BuildLineViewChartData(line.LineName, vmRef.ChartResultsCollection.ToList()));

                            SeriesMapping sm = new SeriesMapping() { LegendLabel = line.LineName };
                            sm.ItemMappings.Add(new ItemMapping("PercentageLineOccupation", DataPointMember.YValue));
                            sm.ItemMappings.Add(new ItemMapping("Years", DataPointMember.XCategory));
                            sm.SeriesDefinition = new BarSeriesDefinition() { ShowItemLabels = true, ShowItemToolTips = true };
                            locChart.SeriesMappings.Add(sm);
                        }
                    }

                    locChart.ItemsSource = lineResultsList;
=======================================================================================================



It shouldn't create overwrite existing series.

Please guide me what i am doing wrong in the code and how to fix this issue.

Thanks
Ves
Telerik team
 answered on 19 Apr 2012
4 answers
619 views

Using namespace:  xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"

The InvertedCooleanConverter has the following error:

Error 710 Ambiguous type reference. A type named 'InvertedBooleanConverter' occurs in at least two namespaces, 'Telerik.Windows.Controls' and 'Telerik.Windows.Controls.Docking'. Consider adjusting the assembly XmlnsDefinition attributes.

<telerik:RadMenuItem.IsChecked>
    <Binding Path="IsPinned">
        <Binding.Converter> 
            <telerik:InvertedBooleanConverter/>
        </Binding.Converter>
    </Binding>
</telerik:RadMenuItem.IsChecked>

How to fix?

Thanks,
Kellie

Rich Reuter
Top achievements
Rank 1
 answered on 19 Apr 2012
3 answers
494 views
Hi,

How do I determine the current docked position of a RadSplitContainer?

I have content in a RadPane that I want to format depending on the current docked position of the pane in the RadSplitContainer (for example, a horizontal format when docked to the top or bottom and a vertical format when docked to the left or right and changing the ExpandDirection of expanders to match the current docked position). I've noticed there is a Friend property "State" that seems to contain the current docked position, however this property is not accessible publicly. What is the best way to obtain this information? (A dirty way would be to subclass RadSplitContainer and expose the State property publicly, but it feels like a particularly dirty way to get to this information).

Kind regards,
Dave.
Konstantina
Telerik team
 answered on 19 Apr 2012
1 answer
373 views
Hello,

I am trying to do what I thought would be a simple implementation of the RadTransition and running into technical difficulties. I am building a kiosk app for us to use for a week. I load the main window with a grid and a frame in the grid. The frame source gets set to my *Start PAGE* which has 4 buttons on it. When I start the app the window loads (although you don't see it) and then the frame loads the start page. When a button is clicked on the start page in the event handler I want to get back to the main window frame where my RadTransition is and change the source to the page that corresponds to button clicked.As per your demo I use the SiteMap and SitePage models.

Now I would gladly add the new page to the SitePage and then Call SiteMap.SelectNextPage but I can't get a handle to it. I would update the source of the frame in the parent window but I can't get a handle to it either. So how do I go about getting the RadTransition to switch pages in WPF app?

Also I am not asking you to do my homework I just need to be pointed in the right direction.

TIA
JB

Tried uploading but the project too large so making a mock up for you to see. OK attached mock example....guess not. Can't upload zip to the forum. I put it here: http://www.gpgvm.org/wpfapplication1.zip
Ivo
Telerik team
 answered on 19 Apr 2012
0 answers
87 views
Hi,

i'm quite new to WPF. I have this problem.

I have an image in a pane, an the image automatically changes its size. but i don't want that. i want to enlarge the pane, so you can see the complete image (even if it doesn't fit in the pane, i will use scrool bars for horizontal and vertical ..)..

My code looks like this:

<telerik:RadDocking.DocumentHost>
                <telerik:RadSplitContainer Margin="0" telerik:DockingPanel.InitialSize="8,2">
                <telerik:RadPaneGroup Name="paneGrpDocuments" TabStripPlacement="Top">
                <telerik:RadDocumentPane Header="StartDokument" Name="Start">
                            <Image HorizontalAlignment="Left" VerticalAlignment="Top"  RenderOptions.EdgeMode="Aliased" Source= "/Images/StartImage_stretched2.png"></Image>
                </telerik:RadDocumentPane>
                        <telerik:RadDocumentPane Header="Doc 1" Name="doc1" />
                        <telerik:RadDocumentPane Header="Doc 2" Name="doc2" />
                </telerik:RadPaneGroup>
        </telerik:RadSplitContainer>
        </telerik:RadDocking.DocumentHost>
Tobias
Top achievements
Rank 1
 asked on 19 Apr 2012
0 answers
89 views
Hi,

i know you can double click the ScheduleView and show the add/edit appointment dialog!
How can i save all the Values in this dialog? 

Recurrence pattern:
- Daily, Weekly, Monthly, Yearly, Revur every ...

Range of recurrence:
No end date, End after, .....

On AppointmentEdited i just get the body, Subject, Start, End,...

Appointment appointment_obj = e.Appointment as Appointment;
string body_s = appointment_obj.body;

Thanks a lot
Rene
ITA
Top achievements
Rank 1
 asked on 19 Apr 2012
1 answer
62 views
Hi,

I have a calendar showing 3 months:
JAN - FEB - MARCH

if I click a date in March the calendar changes and displays March as the first month..
My calendar now look like this
MARCH - APRIL - MAY

I guess this is caused by the fix in 2012.1 SP1 ("When the SelectedDate changes through code the DisplayDate is not updated")
Any changes to SelectedDate will now update DisplayDate...

I would like the calendar to behave as it did prior to this fix -> clicking a date should not update DisplayDate
(if user wants to navigate back and forth he can do so using the left/right arrows on the top of the calendar)
I want the 3 displayed months to be JAN-FEB-MAR

How can I achieve this?
Ivo
Telerik team
 answered on 19 Apr 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
Book
FileDialogs
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
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?