Advanced Forum Search Results
-
try specifying a TargetName for your HyperLinkButton
TargetName="_blank", for example.
-
if they're just images, you can set the source of your image control to their url:
yourImageControl.Source = new BitmapImage(new Uri("dir/imagename.png", UriKind.Relative));
-
you'll want to use a valueconverter in the binding of the column's background property.
basically you bind the background to some date property that indicates the create date and specify a valueconverter in the binding. you'll provide logic in the valueconverter to decide what color to use based on the date.
there are ...
-
expose a method that you can call from javascript that consumes a double, tries to convert it to a nullable int64, and then sets the ID property to that value.
-
i believe MS's dreamspark program is offering the full version if you're still a student.
i honestly don't think its worth $600. i don't use 3/4 of the apps in the suite, and only occasionally bother with blend. i'd just as soon dive into the xaml, but that's me.
-
it doesn't work like asmx services where you can invoke it through the browser. the easiest thing to do is make a simple test winforms app and add a reference to your service and perform the operations synchronously on a button click.
-
make a static class called User, then you'll be able to do:
User.firstName = "tbahlke";
TextBox.Text = User.firstName;
etc
-
i've got many different touch screens running a silverlight app with no such issues. however, they're all on XP.
i'd argue that the device or it's drivers are your main issue. that's where i'd start, at least.
-
if you're making a line of business application where you already have a user base that you can simply tell "go here and click the install button", then you'll have no problems with user acceptance. otherwise you'll have issues with getting random users to install it.
-
if your app is hosted in the browser, no, you can't explicitly disable it. running your app out of browser you won't have this issue.
if you take advantage of the navigation framework, the back button becomes desirable again.
if you don't want to do that, you could always provide a link to your app that opens in a new ...