[Solved] Making smooth effect in WPF manually in C# with DispatcherTimer

The ApplicationHelper.DoEvents() in dt_Tick probably does nothing, since there are no events to process. At least not the ones you’re probably expecting. If I’m not mistaken, your code will just quickly set the Radius to 0, then 1, 2, and so on in quick succession, and finally to 19. All of that will happen every … Read more

[Solved] Twitter Bootstrap Carousel and carusel broblem [closed]

You didn’t set the data-target attribute correctly. the data-target of .carousel-indicators are set to #myCarousel, but the Carousel div’s id is jumbotron. <ol class=”carousel-indicators”> <li data-target=”#jumbotron” data-slide-to=”0″ class=””></li> <li data-target=”#jumbotron” data-slide-to=”1″ class=””></li> <li data-target=”#jumbotron” data-slide-to=”2″ class=””></li> <li data-target=”#jumbotron” data-slide-to=”3″ class=””></li> </ol> the same problem exists in the carousel navigation. you should set the href attr … Read more