What is the WPF browser application type project?
When should one use the WPF browser application? What is the utility of this project type? When should a developer use this?
wpf
add a comment |
When should one use the WPF browser application? What is the utility of this project type? When should a developer use this?
wpf
I have never used this part of visual C#. I ordered a book on it to day, but was sitting at the office looking at example in Visual Studio and was wondering what the best sights would be to find examples on such programs.
– Doug Hauf
Feb 6 '14 at 18:53
This question is quite old and predates Microsoft Edge, does Edge support this?
– S Meaden
2 days ago
add a comment |
When should one use the WPF browser application? What is the utility of this project type? When should a developer use this?
wpf
When should one use the WPF browser application? What is the utility of this project type? When should a developer use this?
wpf
wpf
edited Sep 15 '14 at 17:35
MatthewMartin
18.5k2687152
18.5k2687152
asked Jan 24 '11 at 13:19
ThomasThomas
14.2k95305530
14.2k95305530
I have never used this part of visual C#. I ordered a book on it to day, but was sitting at the office looking at example in Visual Studio and was wondering what the best sights would be to find examples on such programs.
– Doug Hauf
Feb 6 '14 at 18:53
This question is quite old and predates Microsoft Edge, does Edge support this?
– S Meaden
2 days ago
add a comment |
I have never used this part of visual C#. I ordered a book on it to day, but was sitting at the office looking at example in Visual Studio and was wondering what the best sights would be to find examples on such programs.
– Doug Hauf
Feb 6 '14 at 18:53
This question is quite old and predates Microsoft Edge, does Edge support this?
– S Meaden
2 days ago
I have never used this part of visual C#. I ordered a book on it to day, but was sitting at the office looking at example in Visual Studio and was wondering what the best sights would be to find examples on such programs.
– Doug Hauf
Feb 6 '14 at 18:53
I have never used this part of visual C#. I ordered a book on it to day, but was sitting at the office looking at example in Visual Studio and was wondering what the best sights would be to find examples on such programs.
– Doug Hauf
Feb 6 '14 at 18:53
This question is quite old and predates Microsoft Edge, does Edge support this?
– S Meaden
2 days ago
This question is quite old and predates Microsoft Edge, does Edge support this?
– S Meaden
2 days ago
add a comment |
4 Answers
4
active
oldest
votes
XBAP applications (if that is what you are refering to) require the client to have the .NET framework installed (as opposed to Silverlight that only requires the Silverlight plug-in)
This allows XBAP applications to use the entire functionality of the .NET framework which is much broader than Silverlight.
5
You didn't answer his question: What is WPF browser application type project
– Peter Long
Jun 9 '11 at 8:55
5
I answered by not just reading the title but also by looking at the remainder of the question. I figured Thomas wanted to know what this type of project is useful for/what it is. Also, he ticked this answer as the answer to his question. I am afraid the English in the question is a bit broken. So I might be wrong.
– Erno de Weerd
Jun 9 '11 at 9:10
1
I think you and @DanielMay have both provided information that is both helpful and relevant to the question, but Daniel does a better job of answering the original question, your answer does however provide information that adds on to Daniel's answer, but I don't believe it's a complete answer on it's own.
– Jordan LaPrise
May 19 '14 at 0:38
add a comment |
A WPF Browser application is an app that runs in-browser as an XBAP (Xaml Browser Application).
You can find a little more information on the uses and reasons to use XBAPs here.
This thread on MSDN might help also.
add a comment |
XBAP applications also may or may not have full trust and features depending on how you set it up and deploy it to the end users. An advantage to an XBAP is that your users will always use the latest version that you publish, say to a website.
add a comment |
WPF is Windows Presentation Foundation that creates the UI for Windows desktop applications (normally).
The WPF Browser App is similar to Java applets which uses a browser plugin to run the applet. In Microsoft case, a .Net Framework support plugin is what is used at the client side. i.e. web browser.
As a side note, xbap plugins and similar risky approaches are not supported in Google Chrome or Edge anymore. Therefore, it's good to avoid or unlearn developing in WPF browser apps.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f4782442%2fwhat-is-the-wpf-browser-application-type-project%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
XBAP applications (if that is what you are refering to) require the client to have the .NET framework installed (as opposed to Silverlight that only requires the Silverlight plug-in)
This allows XBAP applications to use the entire functionality of the .NET framework which is much broader than Silverlight.
5
You didn't answer his question: What is WPF browser application type project
– Peter Long
Jun 9 '11 at 8:55
5
I answered by not just reading the title but also by looking at the remainder of the question. I figured Thomas wanted to know what this type of project is useful for/what it is. Also, he ticked this answer as the answer to his question. I am afraid the English in the question is a bit broken. So I might be wrong.
– Erno de Weerd
Jun 9 '11 at 9:10
1
I think you and @DanielMay have both provided information that is both helpful and relevant to the question, but Daniel does a better job of answering the original question, your answer does however provide information that adds on to Daniel's answer, but I don't believe it's a complete answer on it's own.
– Jordan LaPrise
May 19 '14 at 0:38
add a comment |
XBAP applications (if that is what you are refering to) require the client to have the .NET framework installed (as opposed to Silverlight that only requires the Silverlight plug-in)
This allows XBAP applications to use the entire functionality of the .NET framework which is much broader than Silverlight.
5
You didn't answer his question: What is WPF browser application type project
– Peter Long
Jun 9 '11 at 8:55
5
I answered by not just reading the title but also by looking at the remainder of the question. I figured Thomas wanted to know what this type of project is useful for/what it is. Also, he ticked this answer as the answer to his question. I am afraid the English in the question is a bit broken. So I might be wrong.
– Erno de Weerd
Jun 9 '11 at 9:10
1
I think you and @DanielMay have both provided information that is both helpful and relevant to the question, but Daniel does a better job of answering the original question, your answer does however provide information that adds on to Daniel's answer, but I don't believe it's a complete answer on it's own.
– Jordan LaPrise
May 19 '14 at 0:38
add a comment |
XBAP applications (if that is what you are refering to) require the client to have the .NET framework installed (as opposed to Silverlight that only requires the Silverlight plug-in)
This allows XBAP applications to use the entire functionality of the .NET framework which is much broader than Silverlight.
XBAP applications (if that is what you are refering to) require the client to have the .NET framework installed (as opposed to Silverlight that only requires the Silverlight plug-in)
This allows XBAP applications to use the entire functionality of the .NET framework which is much broader than Silverlight.
answered Jan 24 '11 at 13:23
Erno de WeerdErno de Weerd
45k96896
45k96896
5
You didn't answer his question: What is WPF browser application type project
– Peter Long
Jun 9 '11 at 8:55
5
I answered by not just reading the title but also by looking at the remainder of the question. I figured Thomas wanted to know what this type of project is useful for/what it is. Also, he ticked this answer as the answer to his question. I am afraid the English in the question is a bit broken. So I might be wrong.
– Erno de Weerd
Jun 9 '11 at 9:10
1
I think you and @DanielMay have both provided information that is both helpful and relevant to the question, but Daniel does a better job of answering the original question, your answer does however provide information that adds on to Daniel's answer, but I don't believe it's a complete answer on it's own.
– Jordan LaPrise
May 19 '14 at 0:38
add a comment |
5
You didn't answer his question: What is WPF browser application type project
– Peter Long
Jun 9 '11 at 8:55
5
I answered by not just reading the title but also by looking at the remainder of the question. I figured Thomas wanted to know what this type of project is useful for/what it is. Also, he ticked this answer as the answer to his question. I am afraid the English in the question is a bit broken. So I might be wrong.
– Erno de Weerd
Jun 9 '11 at 9:10
1
I think you and @DanielMay have both provided information that is both helpful and relevant to the question, but Daniel does a better job of answering the original question, your answer does however provide information that adds on to Daniel's answer, but I don't believe it's a complete answer on it's own.
– Jordan LaPrise
May 19 '14 at 0:38
5
5
You didn't answer his question: What is WPF browser application type project
– Peter Long
Jun 9 '11 at 8:55
You didn't answer his question: What is WPF browser application type project
– Peter Long
Jun 9 '11 at 8:55
5
5
I answered by not just reading the title but also by looking at the remainder of the question. I figured Thomas wanted to know what this type of project is useful for/what it is. Also, he ticked this answer as the answer to his question. I am afraid the English in the question is a bit broken. So I might be wrong.
– Erno de Weerd
Jun 9 '11 at 9:10
I answered by not just reading the title but also by looking at the remainder of the question. I figured Thomas wanted to know what this type of project is useful for/what it is. Also, he ticked this answer as the answer to his question. I am afraid the English in the question is a bit broken. So I might be wrong.
– Erno de Weerd
Jun 9 '11 at 9:10
1
1
I think you and @DanielMay have both provided information that is both helpful and relevant to the question, but Daniel does a better job of answering the original question, your answer does however provide information that adds on to Daniel's answer, but I don't believe it's a complete answer on it's own.
– Jordan LaPrise
May 19 '14 at 0:38
I think you and @DanielMay have both provided information that is both helpful and relevant to the question, but Daniel does a better job of answering the original question, your answer does however provide information that adds on to Daniel's answer, but I don't believe it's a complete answer on it's own.
– Jordan LaPrise
May 19 '14 at 0:38
add a comment |
A WPF Browser application is an app that runs in-browser as an XBAP (Xaml Browser Application).
You can find a little more information on the uses and reasons to use XBAPs here.
This thread on MSDN might help also.
add a comment |
A WPF Browser application is an app that runs in-browser as an XBAP (Xaml Browser Application).
You can find a little more information on the uses and reasons to use XBAPs here.
This thread on MSDN might help also.
add a comment |
A WPF Browser application is an app that runs in-browser as an XBAP (Xaml Browser Application).
You can find a little more information on the uses and reasons to use XBAPs here.
This thread on MSDN might help also.
A WPF Browser application is an app that runs in-browser as an XBAP (Xaml Browser Application).
You can find a little more information on the uses and reasons to use XBAPs here.
This thread on MSDN might help also.
answered Jan 24 '11 at 13:22
Daniel MayDaniel May
7,26512543
7,26512543
add a comment |
add a comment |
XBAP applications also may or may not have full trust and features depending on how you set it up and deploy it to the end users. An advantage to an XBAP is that your users will always use the latest version that you publish, say to a website.
add a comment |
XBAP applications also may or may not have full trust and features depending on how you set it up and deploy it to the end users. An advantage to an XBAP is that your users will always use the latest version that you publish, say to a website.
add a comment |
XBAP applications also may or may not have full trust and features depending on how you set it up and deploy it to the end users. An advantage to an XBAP is that your users will always use the latest version that you publish, say to a website.
XBAP applications also may or may not have full trust and features depending on how you set it up and deploy it to the end users. An advantage to an XBAP is that your users will always use the latest version that you publish, say to a website.
answered Jan 24 '11 at 13:34
A.R.A.R.
9,3001265112
9,3001265112
add a comment |
add a comment |
WPF is Windows Presentation Foundation that creates the UI for Windows desktop applications (normally).
The WPF Browser App is similar to Java applets which uses a browser plugin to run the applet. In Microsoft case, a .Net Framework support plugin is what is used at the client side. i.e. web browser.
As a side note, xbap plugins and similar risky approaches are not supported in Google Chrome or Edge anymore. Therefore, it's good to avoid or unlearn developing in WPF browser apps.
add a comment |
WPF is Windows Presentation Foundation that creates the UI for Windows desktop applications (normally).
The WPF Browser App is similar to Java applets which uses a browser plugin to run the applet. In Microsoft case, a .Net Framework support plugin is what is used at the client side. i.e. web browser.
As a side note, xbap plugins and similar risky approaches are not supported in Google Chrome or Edge anymore. Therefore, it's good to avoid or unlearn developing in WPF browser apps.
add a comment |
WPF is Windows Presentation Foundation that creates the UI for Windows desktop applications (normally).
The WPF Browser App is similar to Java applets which uses a browser plugin to run the applet. In Microsoft case, a .Net Framework support plugin is what is used at the client side. i.e. web browser.
As a side note, xbap plugins and similar risky approaches are not supported in Google Chrome or Edge anymore. Therefore, it's good to avoid or unlearn developing in WPF browser apps.
WPF is Windows Presentation Foundation that creates the UI for Windows desktop applications (normally).
The WPF Browser App is similar to Java applets which uses a browser plugin to run the applet. In Microsoft case, a .Net Framework support plugin is what is used at the client side. i.e. web browser.
As a side note, xbap plugins and similar risky approaches are not supported in Google Chrome or Edge anymore. Therefore, it's good to avoid or unlearn developing in WPF browser apps.
answered Jan 3 at 8:04
Shadi NamroutiShadi Namrouti
1,8401420
1,8401420
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f4782442%2fwhat-is-the-wpf-browser-application-type-project%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I have never used this part of visual C#. I ordered a book on it to day, but was sitting at the office looking at example in Visual Studio and was wondering what the best sights would be to find examples on such programs.
– Doug Hauf
Feb 6 '14 at 18:53
This question is quite old and predates Microsoft Edge, does Edge support this?
– S Meaden
2 days ago