﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - ClientUI - WPF UXScheduleView  how add UXPageableComboBox to EditingFormTemplate?</title><link>http://www.intersoftsolutions.com/Community/ClientUI/WPF-UXScheduleView-how-add-UXPageableComboBox-to-EditingFormTemplate/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>WPF UXScheduleView  how add UXPageableComboBox to EditingFormTemplate?</title><link>http://www.intersoftsolutions.com/Community/ClientUI/WPF-UXScheduleView-how-add-UXPageableComboBox-to-EditingFormTemplate/</link><pubDate>Tue, 07 Oct 2014 03:05:31 GMT</pubDate><dc:creator>yudi</dc:creator><category>WPF</category><category>UXScheduleView</category><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Glad to hear that the snippet code helps.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;You may try to set Width property of UXPageableComboBox such as shown in the following snippet code.&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&amp;lt;Intersoft:UXPageableComboBox BorderBrush="{StaticResource InputBorder}" HorizontalAlignment="Left" Width="180" /&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>WPF UXScheduleView  how add UXPageableComboBox to EditingFormTemplate?</title><link>http://www.intersoftsolutions.com/Community/ClientUI/WPF-UXScheduleView-how-add-UXPageableComboBox-to-EditingFormTemplate/</link><pubDate>Mon, 06 Oct 2014 21:31:52 GMT</pubDate><dc:creator>mksoft@post.pl</dc:creator><category>WPF</category><category>UXScheduleView</category><description>&lt;p&gt;&lt;span class="hps"&gt;Thank you&lt;/span&gt; &lt;span class="hps"&gt;for your response.&lt;/span&gt; &lt;br&gt;&lt;br&gt;&lt;span class="hps"&gt;The problem was&lt;/span&gt; &lt;span class="hps"&gt;that&lt;/span&gt; &lt;span class="hps"&gt;I tried to&lt;/span&gt; &lt;span class="hps"&gt;set the&lt;/span&gt; &lt;span class="hps"&gt;HorizontalAlignment&lt;/span&gt; &lt;span class="hps atn"&gt;= "&lt;/span&gt;&lt;span&gt;Left"&lt;/span&gt; &lt;span class="hps"&gt;in&lt;/span&gt; &lt;span class="hps"&gt;UXPageableComboBox&lt;/span&gt;&lt;span&gt;.&lt;/span&gt; &lt;br&gt;&lt;span class="hps"&gt;When&lt;/span&gt; &lt;span class="hps"&gt;I removed&lt;/span&gt; &lt;span class="hps"&gt;this feature.&lt;/span&gt; &lt;br&gt;&lt;br&gt;&lt;span class="hps"&gt;Everything works fine&lt;/span&gt;&lt;span&gt;.&lt;/span&gt; &lt;br&gt;&lt;br&gt;&lt;span class="hps"&gt;Once again,&lt;/span&gt; &lt;span class="hps"&gt;thank you very much&lt;/span&gt; &lt;span class="hps"&gt;for your help.&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description></item><item><title>WPF UXScheduleView  how add UXPageableComboBox to EditingFormTemplate?</title><link>http://www.intersoftsolutions.com/Community/ClientUI/WPF-UXScheduleView-how-add-UXPageableComboBox-to-EditingFormTemplate/</link><pubDate>Thu, 02 Oct 2014 08:45:15 GMT</pubDate><dc:creator>yudi</dc:creator><category>WPF</category><category>UXScheduleView</category><description>&lt;img src="http://www.intersoftpt.com/Community/Attachments/4184/UXPageableComboBoxinCustomEditingForm.jpg" style="height: 384px; width: 614px;"&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;The above screenshot shows how to add UXPageableComboBox into the custom editing form of UXScheduleView in WPF project.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Following snippet code shows how to implement this in xaml file.&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&amp;lt;Intersoft:UXPage.Resources&amp;gt;
    ...
    &amp;lt;Style x:Key="EventDetailStyle" TargetType="Intersoft:UXScheduleViewEventDetail"&amp;gt;
        ...
        &amp;lt;Setter Property="EditingFormTemplate"&amp;gt;
            &amp;lt;Setter.Value&amp;gt;
                &amp;lt;DataTemplate&amp;gt;
                    &amp;lt;Intersoft:DockPanel FillChildMode="Custom" Margin="4,10,4,2"
                                            MinHeight="440" Width="380"&amp;gt;
                        &amp;lt;Intersoft:UXTabControl Intersoft:DockPanel.IsFillElement="True"
                                                Style="{StaticResource Editing_TabStyle}"
                                                SelectedIndex="{Binding ActiveIndex, Mode=TwoWay}"&amp;gt;
                            &amp;lt;Intersoft:UXTabItem BorderThickness="1,1,0,1"
                                                    CornerRadius="4,0,0,4" Header="General"
                                                    MinWidth="85"&amp;gt;
                                &amp;lt;Intersoft:UXItemsControl Padding="6"
                                                            ItemContainerStyle="{StaticResource HeaderLabelStyle}" &amp;gt;
                                    &amp;lt;Intersoft:FieldLabel Header="Subject"&amp;gt;
                                        &amp;lt;Intersoft:UXTextBox x:Name="DefaultFocus"
                                                                BorderBrush="{StaticResource InputBorder}"
                                                                Text="{Binding CurrentItem.Subject, Mode=TwoWay, ValidatesOnDataErrors=True}"/&amp;gt;
                                    &amp;lt;/Intersoft:FieldLabel&amp;gt;
                                    &amp;lt;Intersoft:FieldLabel&amp;gt;
                                        &amp;lt;Intersoft:FieldLabel.Header&amp;gt;
                                            &amp;lt;TextBlock Text="Customer" FontWeight="Bold"/&amp;gt;
                                        &amp;lt;/Intersoft:FieldLabel.Header&amp;gt;
                                        &amp;lt;Intersoft:UXPageableComboBox BorderBrush="{StaticResource InputBorder}" /&amp;gt;
                                    ...&lt;/pre&gt;
&lt;br&gt;
&lt;pre&gt;&amp;lt;Intersoft:UXScheduleView x:Name="SampleControl1"
                            EventDetailStyle="{StaticResource EventDetailStyle}"
                            ...&amp;gt;
    &amp;lt;Intersoft:UXScheduleDayView /&amp;gt;
    &amp;lt;Intersoft:UXScheduleWorkWeekView /&amp;gt;
    &amp;lt;Intersoft:UXScheduleWeekView IsActive="True"/&amp;gt;
    &amp;lt;Intersoft:UXScheduleMonthView /&amp;gt;
&amp;lt;/Intersoft:UXScheduleView&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>WPF UXScheduleView  how add UXPageableComboBox to EditingFormTemplate?</title><link>http://www.intersoftsolutions.com/Community/ClientUI/WPF-UXScheduleView-how-add-UXPageableComboBox-to-EditingFormTemplate/</link><pubDate>Sat, 27 Sep 2014 22:33:01 GMT</pubDate><dc:creator>mksoft@post.pl</dc:creator><category>WPF</category><category>UXScheduleView</category><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I want customize EditFormTemplate in UXscheduleView and add UXPageableComboBox.&lt;/p&gt;&lt;p&gt;I prepared EditformTempalte, I added UxpageableComboBox, but when I run apllication UXPageableCombobox not appears, i this place is textbox.&lt;/p&gt;&lt;p&gt;What should I do?&lt;/p&gt;&lt;p&gt;Regards&lt;br&gt;Krzysztof Miętka&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>