Forum Replies Created

Viewing 15 posts - 16 through 30 (of 51 total)
  • Author
    Posts
  • Amos Chepchieng
    Keymaster
    Post count: 51
    in reply to: FlatButton Bug #9056

    Hi, thank you for the observation, we noticed that too but you can still hack it by initializing selected during Form_Load for the first button. We will work on that.
    Thank you once again.

    Amos Chepchieng
    Keymaster
    Post count: 51
    Amos Chepchieng
    Keymaster
    Post count: 51

    Sorry for the late response, all you need to do is implement the click event for menu instead of putting the code inside Form_load

    Here: See Image

    or code

    ` private void btnSlidingPanel_Click(object sender, EventArgs e)
    {
    if (slidePane.Width == 38)
    {
    slidePane.Visible = false;
    slidePane.Width = 189;
    panelAnimator.ShowSync(slidePane);
    logoAnimator.ShowSync(largeLogo);
    }
    else
    {
    logoAnimator.Hide(largeLogo);
    slidePane.Visible = false;
    slidePane.Width = 38;
    panelAnimator.ShowSync(slidePane);
    }
    }`

    Amos Chepchieng
    Keymaster
    Post count: 51

    I hope you found a solution to this.

    Amos Chepchieng
    Keymaster
    Post count: 51

    The attached link is a local file, host it somewhere or create a ticket for it.

    Amos Chepchieng
    Keymaster
    Post count: 51

    Hi, sorry about that, there is no explanation going on the video but music. the sidemenu control is a panel – you can rename it via properties window. Having trouble check the comment section of the video, most issues have been covered there.

    Amos Chepchieng
    Keymaster
    Post count: 51

    The functionality of the framework is not limited to the type of Windows architecture, it should work on both devices. Maybe if you can give us more information about the problem it will help in finding a solution for you.

    Amos Chepchieng
    Keymaster
    Post count: 51
    in reply to: Transition "bug" #6877

    Issue sorted via teamviewer.

    Amos Chepchieng
    Keymaster
    Post count: 51

    Thank you Alexander for answering that question. That’s the correct answer. I suggest to you George you make use of Visual studio IntelliSense and Properties window for easy coding and navigation. Cheers.

    Amos Chepchieng
    Keymaster
    Post count: 51
    in reply to: Transition "bug" #6706

    Please user AnimationComplete event to show the new Window. As shown Here and https://prntscr.com/e0ieic
    Note : For a smooth transition it should have a small delay time.

    Amos Chepchieng
    Keymaster
    Post count: 51
    in reply to: Button Tabs #6500

    This Video will come in handy.

    Amos Chepchieng
    Keymaster
    Post count: 51
    in reply to: Button Tabs #6472

    Hi, as indicated via email sent to you, the tabs may not be equally same as the native Tab Control – and we don’t have a Tab Control for that matter but we are giving an option to your BunifuFlatButton to mimic a Tabbed interface. You may also want to create custom user controls to switch between then on your side bar buttons.

    Amos Chepchieng
    Keymaster
    Post count: 51

    Please provide us the reference to the video or the c# source.

    Amos Chepchieng
    Keymaster
    Post count: 51

    Please use BunifuTransition Control to animate other controls.

    Amos Chepchieng
    Keymaster
    Post count: 51

    Hi Gabriel, there is less code to write for this so after drag-dropping on your form and selecting the transition
    bunifuTransition.ShowSync("Control to show",true,null) as described at the bottom of this Page

Viewing 15 posts - 16 through 30 (of 51 total)