Git Product home page Git Product logo

Comments (5)

ButchersBoy avatar ButchersBoy commented on June 24, 2024 1

Here we go:

verticaldragmaterialdesign

This only works for tab strip placement left right now in the material design theme. Also, some of the mouse positioning when tearing out isn't quite right, but this will improve over time. You may want to resize the tabs to suit your app. To do that you'll need to inherit one of the styles and set the widths heights as in this XAML:

<Window x:Class="MaterialDesignTabExample.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:dragablz="clr-namespace:Dragablz;assembly=Dragablz"
        Title="Material Design Demo" Height="350" Width="525">
    <Window.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/Dragablz;component/themes/materialdesign.xaml" />
            </ResourceDictionary.MergedDictionaries>            
        </ResourceDictionary>
    </Window.Resources>
    <dragablz:TabablzControl TabStripPlacement="Left">
        <dragablz:TabablzControl.ItemContainerStyle>
            <Style TargetType="{x:Type dragablz:DragablzItem}" BasedOn="{StaticResource MaterialDesignDragableTabItemVerticalStyle}">
                <Setter Property="Width" Value="100" />
                <Setter Property="Height" Value="40" />
            </Style>
        </dragablz:TabablzControl.ItemContainerStyle>
        <dragablz:TabablzControl.InterTabController>
            <dragablz:InterTabController />
        </dragablz:TabablzControl.InterTabController>
        <TabItem Header="HELLO">
            <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">Hello World</TextBlock>
        </TabItem>
        <TabItem Header="MATERIAL">
            <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">Material Design</TextBlock>
        </TabItem>
        <TabItem Header="DESIGN">
            <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">Looks Quite Nice</TextBlock>
        </TabItem>
    </dragablz:TabablzControl>
</Window>

from dragablz.

tmichaluk avatar tmichaluk commented on June 24, 2024

issue

from dragablz.

ButchersBoy avatar ButchersBoy commented on June 24, 2024

OK...I'll need to update the material design theme. About 75% of the code is there to do vertical tabs, so this is the prompt I needed to get the last 25% finished.

from dragablz.

tmichaluk avatar tmichaluk commented on June 24, 2024

Could you evaluate how much time could it take? Thanks for quick support btw.

from dragablz.

ButchersBoy avatar ButchersBoy commented on June 24, 2024

I'll have a blast for a bit tonight, then i'm off on holidays for a long weekend...so maybe a week or two, unless I make really good progress tonight. there could be a bit of technicality when tabs tear out etc.

from dragablz.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.