Click here to Skip to main content
15,897,371 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How Can I Expand the Field Name Column in an MVC Details view? Pin
Richard Deeming10-Jan-17 4:06
mveRichard Deeming10-Jan-17 4:06 
QuestionASP Button not displaying on Windows 2012 Server Pin
pmcm22-Dec-16 3:00
pmcm22-Dec-16 3:00 
AnswerRe: ASP Button not displaying on Windows 2012 Server Pin
Afzaal Ahmad Zeeshan22-Dec-16 3:57
professionalAfzaal Ahmad Zeeshan22-Dec-16 3:57 
GeneralRe: ASP Button not displaying on Windows 2012 Server Pin
pmcm22-Dec-16 4:02
pmcm22-Dec-16 4:02 
AnswerRe: ASP Button not displaying on Windows 2012 Server Pin
ZurdoDev22-Dec-16 5:15
professionalZurdoDev22-Dec-16 5:15 
GeneralRe: ASP Button not displaying on Windows 2012 Server Pin
pmcm22-Dec-16 23:47
pmcm22-Dec-16 23:47 
GeneralRe: ASP Button not displaying on Windows 2012 Server Pin
ZurdoDev23-Dec-16 2:12
professionalZurdoDev23-Dec-16 2:12 
QuestionConverting from XAML to HTML5 Pin
indian14320-Dec-16 11:24
indian14320-Dec-16 11:24 
Hi all,

I have an Application that's using WPF, in which I have a ListBox as below, can I have similar kind of ListBox in HTML5 or can we have at least any other similar Control so that I can give same look and feel to the Customers that are using the Application. Any help is going to be very helpful, a code snippet a link or even a suggestion would be greatly helpful.

In the below xaml if you can replace < with < and > with > symbols it works. Is there any online tool to convert from xaml to HTML5 instead of downloading the application, because my company has download restrictions in the environment.

Here is the ListBox look like xaml:
&lt;ListBox
        Name="Members"
        HorizontalAlignment="Left"
        VerticalAlignment="Top"
        Margin="166,80,0,0"
        HorizontalContentAlignment="Left"
        VerticalContentAlignment="Top"
        ItemsSource="{Binding ElementName=SubscriberResults, Path=SelectedItem.Members}"&gt;
        &lt;ListBox.ItemsPanel&gt;
            &lt;ItemsPanelTemplate&gt;
                &lt;StackPanel
                    Orientation="Horizontal"&gt;&lt;/StackPanel&gt;
            &lt;/ItemsPanelTemplate&gt;
        &lt;/ListBox.ItemsPanel&gt;
        &lt;ListBox.ItemTemplate&gt;
            &lt;DataTemplate&gt;
                &lt;StackPanel
                    VerticalAlignment="Top"&gt;
                    &lt;TextBlock
                        VerticalAlignment="Top"
                        HorizontalAlignment="Left"
                        Text="{Binding Path=Name}"
                        Style="{StaticResource DataLabel}"/&gt;
                    &lt;TextBox
                        VerticalAlignment="Top"
                        HorizontalAlignment="Left"
                        Text="{Binding Path=SSN}"
                        FontSize="12"
                        BorderBrush="Transparent"
                        /&gt;
                    &lt;TextBlock
                        VerticalAlignment="Top"<br />
                        HorizontalAlignment="Left"
                        Text="{Binding Path=DOB, StringFormat=d}"
                        Style="{StaticResource DataLabel}"/&gt;
                    &lt;ListBox
                        ItemsSource="{Binding Path=MemberDetails}"&gt;
                        &lt;ListBox.ItemTemplate&gt;
                            &lt;DataTemplate&gt;
                                &lt;TextBox
                                    Text="{Binding Path=TranslatedDetail}"&gt;
                                    &lt;TextBox.Style&gt;
                                        &lt;Style
                                            TargetType="TextBox"
                                            BasedOn="{StaticResource DataBox}"&gt;
                                            &lt;Style.Triggers&gt;
                                                &lt;DataTrigger
                                                    Binding="{Binding Path=HasParsedData}"
                                                    Value="True"&gt;
                                                    &lt;Setter
                                                        Property="FontWeight"
                                                        Value="Bold" /&gt;
                                                &lt;/DataTrigger&gt;
                                            &lt;/Style.Triggers&gt;

                                        &lt;/Style&gt;
                                    &lt;/TextBox.Style&gt;
                                &lt;/TextBox&gt;
                            &lt;/DataTemplate&gt;
                        &lt;/ListBox.ItemTemplate&gt;
                    &lt;/ListBox&gt;
                    &lt;Button Click="Enroll_Click"&gt;
                        Enroll
                    &lt;/Button&gt;

                &lt;/StackPanel&gt;
            &lt;/DataTemplate&gt;
        &lt;/ListBox.ItemTemplate&gt;
    &lt;/ListBox&gt;
Thanks,

Abdul Aleem

"There is already enough hatred in the world lets spread love, compassion and affection."


modified 20-Dec-16 17:37pm.

AnswerRe: Converting from XAML to HTML5 Pin
koolprasad200320-Dec-16 22:39
professionalkoolprasad200320-Dec-16 22:39 
QuestionError: Server did not recognize the value of HTTP Header SOAPAction Pin
Scott5220-Dec-16 9:24
Scott5220-Dec-16 9:24 
AnswerRe: Error: Server did not recognize the value of HTTP Header SOAPAction Pin
jkirkerx20-Dec-16 10:35
professionaljkirkerx20-Dec-16 10:35 
GeneralRe: Error: Server did not recognize the value of HTTP Header SOAPAction Pin
Scott5221-Dec-16 1:50
Scott5221-Dec-16 1:50 
GeneralRe: Error: Server did not recognize the value of HTTP Header SOAPAction Pin
jkirkerx21-Dec-16 9:18
professionaljkirkerx21-Dec-16 9:18 
GeneralRe: Error: Server did not recognize the value of HTTP Header SOAPAction Pin
Scott5222-Dec-16 1:59
Scott5222-Dec-16 1:59 
QuestionNeed help populating fields from database to form in page load Pin
Bootzilla3320-Dec-16 8:51
Bootzilla3320-Dec-16 8:51 
AnswerRe: Need help populating fields from database to form in page load Pin
Richard Deeming20-Dec-16 10:18
mveRichard Deeming20-Dec-16 10:18 
QuestionViewData, Viewbag and tempdata not working Pin
Member 815484520-Dec-16 6:47
Member 815484520-Dec-16 6:47 
AnswerRe: ViewData, Viewbag and tempdata not working Pin
Richard Deeming20-Dec-16 8:09
mveRichard Deeming20-Dec-16 8:09 
GeneralRe: ViewData, Viewbag and tempdata not working Pin
Member 815484520-Dec-16 8:36
Member 815484520-Dec-16 8:36 
GeneralRe: ViewData, Viewbag and tempdata not working Pin
Richard Deeming20-Dec-16 10:11
mveRichard Deeming20-Dec-16 10:11 
QuestionASMX: Facing problem to send user credentails from client side to service end Pin
Tridip Bhattacharjee19-Dec-16 3:51
professionalTridip Bhattacharjee19-Dec-16 3:51 
AnswerRe: ASMX: Facing problem to send user credentails from client side to service end Pin
jkirkerx19-Dec-16 11:40
professionaljkirkerx19-Dec-16 11:40 
GeneralRe: ASMX: Facing problem to send user credentails from client side to service end Pin
Tridip Bhattacharjee20-Dec-16 21:17
professionalTridip Bhattacharjee20-Dec-16 21:17 
AnswerRe: ASMX: Facing problem to send user credentails from client side to service end Pin
jkirkerx21-Dec-16 9:49
professionaljkirkerx21-Dec-16 9:49 
GeneralRe: ASMX: Facing problem to send user credentails from client side to service end Pin
Tridip Bhattacharjee21-Dec-16 20:31
professionalTridip Bhattacharjee21-Dec-16 20:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.