Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. WPF
  4. WPF perfomance

WPF perfomance

Scheduled Pinned Locked Moved WPF
csharpasp-netwpfdesignquestion
10 Posts 7 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    afsal qureshi
    wrote on last edited by
    #1

    We have a website and have a very complex page need to be developed. The page would contain a lot of datagrids and images that would be almost impossible to render without a page crash if we develop the page as it is. So it was suggested to develop the page in WPF instead of asp.net and then integrate it with asp.net. That is on click of a menu item it will launch a WPF UI. Is it a possible way of doing as I am totally new to WPF?

    R P V N 4 Replies Last reply
    0
    • A afsal qureshi

      We have a website and have a very complex page need to be developed. The page would contain a lot of datagrids and images that would be almost impossible to render without a page crash if we develop the page as it is. So it was suggested to develop the page in WPF instead of asp.net and then integrate it with asp.net. That is on click of a menu item it will launch a WPF UI. Is it a possible way of doing as I am totally new to WPF?

      R Offline
      R Offline
      RugbyLeague
      wrote on last edited by
      #2

      You would do better looking at SilverLight. It is certianly possible - performance is up to you though.

      A 1 Reply Last reply
      0
      • R RugbyLeague

        You would do better looking at SilverLight. It is certianly possible - performance is up to you though.

        A Offline
        A Offline
        afsal qureshi
        wrote on last edited by
        #3

        Oh sorry. I was asking if it is possible or not in WPF to do the functionality. is it possible or not? I don't intent to make this thread to discuss silverlight.

        S R 2 Replies Last reply
        0
        • A afsal qureshi

          Oh sorry. I was asking if it is possible or not in WPF to do the functionality. is it possible or not? I don't intent to make this thread to discuss silverlight.

          S Offline
          S Offline
          Simon_Whale
          wrote on last edited by
          #4

          He wasn't he was suggesting that you use Silverlight as it is a tool that is more suited to your problem. WPF Controls in a asp.net page This might be a better starting place for you

          As barmey as a sack of badgers Dude, if I knew what I was doing in life, I'd be rich, retired, dating a supermodel and laughing at the rest of you from the sidelines.

          1 Reply Last reply
          0
          • A afsal qureshi

            Oh sorry. I was asking if it is possible or not in WPF to do the functionality. is it possible or not? I don't intent to make this thread to discuss silverlight.

            R Offline
            R Offline
            RugbyLeague
            wrote on last edited by
            #5

            You can run a WPF app within a browser - look up XBAP but really from the brief spec you have provided SilverLight would be preferable. Functionality and performance is up to you.

            A 1 Reply Last reply
            0
            • R RugbyLeague

              You can run a WPF app within a browser - look up XBAP but really from the brief spec you have provided SilverLight would be preferable. Functionality and performance is up to you.

              A Offline
              A Offline
              afsal qureshi
              wrote on last edited by
              #6

              Thanks! The choice of WPF was to avaoid the browser rendering time as the time is consumed more while rendering. So is it wise to create a WPF app and use libraries like XBAP?

              A 1 Reply Last reply
              0
              • A afsal qureshi

                We have a website and have a very complex page need to be developed. The page would contain a lot of datagrids and images that would be almost impossible to render without a page crash if we develop the page as it is. So it was suggested to develop the page in WPF instead of asp.net and then integrate it with asp.net. That is on click of a menu item it will launch a WPF UI. Is it a possible way of doing as I am totally new to WPF?

                P Offline
                P Offline
                Pete OHanlon
                wrote on last edited by
                #7

                Do you only intend to target Windows IE customers? If so, you can use an XBAP; if not, you need to look at Silverlight.

                I have CDO, it's OCD with the letters in the right order; just as they ruddy well should be

                Forgive your enemies - it messes with their heads

                My blog | My articles | MoXAML PowerToys | Onyx

                1 Reply Last reply
                0
                • A afsal qureshi

                  We have a website and have a very complex page need to be developed. The page would contain a lot of datagrids and images that would be almost impossible to render without a page crash if we develop the page as it is. So it was suggested to develop the page in WPF instead of asp.net and then integrate it with asp.net. That is on click of a menu item it will launch a WPF UI. Is it a possible way of doing as I am totally new to WPF?

                  V Offline
                  V Offline
                  venugopalm
                  wrote on last edited by
                  #8

                  Hi, Yes. Just go ahead with XBAP application which enables your application as desktop application without any performance issue.

                  MVVM devotee :)

                  1 Reply Last reply
                  0
                  • A afsal qureshi

                    Thanks! The choice of WPF was to avaoid the browser rendering time as the time is consumed more while rendering. So is it wise to create a WPF app and use libraries like XBAP?

                    A Offline
                    A Offline
                    AspDotNetDev
                    wrote on last edited by
                    #9

                    The problem with XBAP's is that they require a certificate, and those cost money. Silverlight might be the way to go if it's all you need. If you converting a web page (e.g., Javascript, HTML, CSS) to something, then Silverlight should suffice. Silverlight supports things that will help performance, such as virtualization, though there are some differences as compared to WPF.

                    [Forum Guidelines]

                    1 Reply Last reply
                    0
                    • A afsal qureshi

                      We have a website and have a very complex page need to be developed. The page would contain a lot of datagrids and images that would be almost impossible to render without a page crash if we develop the page as it is. So it was suggested to develop the page in WPF instead of asp.net and then integrate it with asp.net. That is on click of a menu item it will launch a WPF UI. Is it a possible way of doing as I am totally new to WPF?

                      N Offline
                      N Offline
                      Nish Nishant
                      wrote on last edited by
                      #10

                      If you are fine with XBAP, you might as well use ClickOnce and deploy a WPF desktop app. That'd be a far more convenient approach.

                      Regards, Nish


                      My technology blog: voidnish.wordpress.com Code Project Forums : New Posts Monitor This application monitors for new posts in the Code Project forums.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups